CHEWY: Move private members of FontMgr

This commit is contained in:
Filippos Karapetis 2022-07-07 12:26:44 +03:00
parent 8d77908a6b
commit cf1a10f24a

View file

@ -51,9 +51,6 @@ private:
}; };
class FontMgr { class FontMgr {
private:
ChewyFont *_font;
public: public:
FontMgr() : _font(nullptr) {}; FontMgr() : _font(nullptr) {};
virtual ~FontMgr() {}; virtual ~FontMgr() {};
@ -62,6 +59,9 @@ public:
void setFont(ChewyFont *font) { _font = font; } void setFont(ChewyFont *font) { _font = font; }
ChewyFont *getFont() { return _font; } ChewyFont *getFont() { return _font; }
private:
ChewyFont *_font;
}; };
} // namespace Chewy } // namespace Chewy