Helper functions to construct string flags
| 67 | |
| 68 | // Helper functions to construct string flags |
| 69 | inline int SF(bool selected = false) { return (int)PrintStringFlags::Outline | (selected ? (int)PrintStringFlags::Blink : 0); } |
| 70 | inline int SF_Center(bool selected = false) { return (int)PrintStringFlags::Outline | (int)PrintStringFlags::Center | (selected ? (int)PrintStringFlags::Blink : 0); } |
| 71 | |
| 72 | // Helper functions to get specific generic strings |
no outgoing calls
no test coverage detected