| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2006 The Android Open Source Project | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 | |
| 9 #ifndef SkSVGPolyline_DEFINED | |
| 10 #define SkSVGPolyline_DEFINED | |
| 11 | |
| 12 #include "SkSVGElements.h" | |
| 13 #include "SkString.h" | |
| 14 | |
| 15 class SkSVGPolyline : public SkSVGElement { | |
| 16 DECLARE_SVG_INFO(Polyline); | |
| 17 virtual void addAttribute(SkSVGParser& , int attrIndex, | |
| 18 const char* attrValue, size_t attrLength); | |
| 19 protected: | |
| 20 SkString f_clipRule; | |
| 21 SkString f_fillRule; | |
| 22 SkString f_points; | |
| 23 typedef SkSVGElement INHERITED; | |
| 24 }; | |
| 25 | |
| 26 #endif // SkSVGPolyline_DEFINED | |
| OLD | NEW |