| | | 1 | | namespace NanoCLang { |
| | | 2 | | /// <summary> |
| | | 3 | | /// Provides a class for setting formatting options on C code formatting. |
| | | 4 | | /// </summary> |
| | | 5 | | public class CSourceFormat : NanoCSourceFormat { |
| | | 6 | | /// <summary> |
| | | 7 | | /// Gets or sets a flag that specifies whether a pure expression is used as an expression. |
| | | 8 | | /// </summary> |
| | 1195 | 9 | | public bool PureRequiresReturn { get; set; } = false; |
| | | 10 | | /// <summary> |
| | | 11 | | /// Gets or sets a flag that specifies whether the program header was already output. |
| | | 12 | | /// </summary> |
| | 47 | 13 | | public bool HeaderPrinted { get; set; } = false; |
| | | 14 | | } |
| | | 15 | | } |