*/
| 27 | /** |
| 28 | */ |
| 29 | class FontNames { |
| 30 | private: |
| 31 | std::vector<char *> names; |
| 32 | |
| 33 | // Private so FontNames objects can not be copied |
| 34 | FontNames(const FontNames &); |
| 35 | public: |
| 36 | FontNames(); |
| 37 | ~FontNames(); |
| 38 | void Clear(); |
| 39 | const char *Save(const char *name); |
| 40 | }; |
| 41 | |
| 42 | class FontRealised : public FontMeasurements { |
| 43 | // Private so FontRealised objects can not be copied |
nothing calls this directly
no outgoing calls
no test coverage detected