WHY_CPP
0.1
Overview
Getting started
Modules
Class List
File List
whycpp
src
holders
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
};
IObject
Definition:
i_object.h:3
Font
Definition:
font.h:22
FontsHolder
Definition:
fonts_holder.h:8
Generated by
1.8.11