/Users/lyon/j4p/src/gui/htmlconverter/CplusplusText.java

1    package gui.htmlconverter; 
2     
3    public interface CplusplusText { 
4        public static String cplusplusReservedWords[] = { 
5            "asm", 
6            "auto", 
7            "break", 
8            "case", 
9            "catch", 
10           "char", 
11           "class", 
12           "const", 
13           "continue", 
14           "default", 
15           "delete", 
16           "do", 
17           "double", 
18           "else", 
19           "enum", 
20           "extern", 
21           "float", 
22           "friend", 
23           "for", 
24           "goto", 
25           "if", 
26           "inline", 
27           "int", 
28           "long", 
29           "new", 
30           "operator", 
31           "private", 
32           "protected", 
33           "public", 
34           "register", 
35           "return", 
36           "short", 
37           "signed", 
38           "sizeof", 
39           "static", 
40           "struct", 
41           "switch", 
42           "this", 
43           "throw", 
44           "try", 
45           "typedef", 
46           "union", 
47           "unsigned", 
48           "virtual", 
49           "void", 
50           "volatile", 
51           "while" 
52       }; 
53   } 
54