WHY_CPP  0.1
fonts_holder.h
1 #pragma once
2 
3 #include <memory>
4 #include "../i_object.h"
5 
6 class Font;
7 
8 class FontsHolder : public IObject {
9  std::unique_ptr<Font> font_;
10 
11  public:
12  FontsHolder();
13  Font *GetFont() const;
14  void SetFont(Font *font);
15  ~FontsHolder() override;
16 };
Definition: font.h:22