blob: c9c7b1f40cb28dfff47ec903f474e5afd4bb6dd0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// license:BSD-3-Clause
// copyright-holders:Couriersud
/*
* font_module.h
*
*/
#ifndef FONT_MODULE_H_
#define FONT_MODULE_H_
#include "osdepend.h"
#include "modules/osdmodule.h"
//============================================================
// CONSTANTS
//============================================================
#define OSD_FONT_PROVIDER "uifontprovider"
class font_module
{
public:
virtual ~font_module() { }
virtual osd_font *font_alloc() = 0;
};
#endif /* FONT_MODULE_H_ */
|