| 80 | }; |
| 81 | |
| 82 | struct Format |
| 83 | { |
| 84 | bool newline; |
| 85 | bool spacing; |
| 86 | bool useTabs; |
| 87 | unsigned int indentSize; |
| 88 | }; |
| 89 | static const Format StandardFormat = { true, true, true, 1 }; |
| 90 | static const Format NoFormat = { false, false, false, 0 }; |
| 91 |
no outgoing calls