| 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 SkSVGGroup_DEFINED | |
| 10 #define SkSVGGroup_DEFINED | |
| 11 | |
| 12 #include "SkSVGElements.h" | |
| 13 | |
| 14 class SkSVGGroup : public SkSVGElement { | |
| 15 public: | |
| 16 SkSVGGroup(); | |
| 17 virtual SkSVGElement* getGradient(); | |
| 18 virtual bool isDef(); | |
| 19 virtual bool isFlushable(); | |
| 20 virtual bool isGroup(); | |
| 21 virtual bool isNotDef(); | |
| 22 void translate(SkSVGParser& , bool defState); | |
| 23 private: | |
| 24 typedef SkSVGElement INHERITED; | |
| 25 }; | |
| 26 | |
| 27 #endif // SkSVGGroup_DEFINED | |
| OLD | NEW |