CHEWY: Move private members of FontMgr
This commit is contained in:
parent
8d77908a6b
commit
cf1a10f24a
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue