CHEWY: Move private members of FontMgr

This commit is contained in:
Filippos Karapetis 2022-07-07 12:26:44 +03:00
parent 903ec7bc86
commit 2ae3906211

View File

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