blob: 7ed0c4f7e18d6cc41e558c0cea144a4d00cf39f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include <AK/AKString.h>
#include <AK/HashMap.h>
#include <AK/Function.h>
class Font;
class GFontDatabase {
public:
static GFontDatabase& the();
RetainPtr<Font> get_by_name(const String&);
void for_each_font(Function<void(const String&)>);
private:
GFontDatabase();
~GFontDatabase();
HashMap<String, String> m_name_to_path;
};
|