| 40 | }; |
| 41 | |
| 42 | class FontRealised : public FontMeasurements { |
| 43 | // Private so FontRealised objects can not be copied |
| 44 | FontRealised(const FontRealised &); |
| 45 | FontRealised &operator=(const FontRealised &); |
| 46 | public: |
| 47 | Font font; |
| 48 | FontRealised(); |
| 49 | virtual ~FontRealised(); |
| 50 | void Realise(Surface &surface, int zoomLevel, int technology, const FontSpecification &fs); |
| 51 | }; |
| 52 | |
| 53 | enum IndentView {ivNone, ivReal, ivLookForward, ivLookBoth}; |
| 54 |
nothing calls this directly
no outgoing calls
no test coverage detected