michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkSVGPolyline_DEFINED michael@0: #define SkSVGPolyline_DEFINED michael@0: michael@0: #include "SkSVGElements.h" michael@0: #include "SkString.h" michael@0: michael@0: class SkSVGPolyline : public SkSVGElement { michael@0: DECLARE_SVG_INFO(Polyline); michael@0: virtual void addAttribute(SkSVGParser& , int attrIndex, michael@0: const char* attrValue, size_t attrLength); michael@0: protected: michael@0: SkString f_clipRule; michael@0: SkString f_fillRule; michael@0: SkString f_points; michael@0: typedef SkSVGElement INHERITED; michael@0: }; michael@0: michael@0: #endif // SkSVGPolyline_DEFINED