| 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 SkBML_Verbs_DEFINED | |
| 10 #define SkBML_Verbs_DEFINED | |
| 11 | |
| 12 enum Verbs { | |
| 13 kStartElem_Value_Verb, | |
| 14 kStartElem_Index_Verb, | |
| 15 kEndElem_Verb, | |
| 16 kAttr_Value_Value_Verb, | |
| 17 kAttr_Value_Index_Verb, | |
| 18 kAttr_Index_Value_Verb, | |
| 19 kAttr_Index_Index_Verb, | |
| 20 | |
| 21 kVerbCount | |
| 22 }; | |
| 23 | |
| 24 #endif // SkBML_Verbs_DEFINED | |
| OLD | NEW |