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 #include "SkSVGSymbol.h" | |
10 #include "SkSVGParser.h" | |
11 | |
12 const SkSVGAttribute SkSVGSymbol::gAttributes[] = { | |
13 SVG_ATTRIBUTE(viewBox) | |
14 }; | |
15 | |
16 DEFINE_SVG_INFO(Symbol) | |
17 | |
18 void SkSVGSymbol::translate(SkSVGParser& parser, bool defState) { | |
19 INHERITED::translate(parser, defState); | |
20 // !!! children need to be written into document | |
21 } | |
OLD | NEW |