KiCad PCB EDA Suite
Loading...
Searching...
No Matches
version_info.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KICAD, a free EDA CAD application.
3 *
4 * Copyright (C) 2021 Ola Rinta-Koski
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * Outline font class
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef VERSION_INFO_H_
24#define VERSION_INFO_H_
25
26#include <kicommon.h>
27#include <mutex>
28#include <wx/string.h>
29
30namespace KIFONT
31{
36{
37public:
38 static wxString FontConfig();
39
40 static wxString FreeType();
41
42 static wxString HarfBuzz();
43
44 static wxString FontLibrary();
45
46private:
47 // we are a static helper
49};
50
51} //namespace KIFONT
52
53#endif // VERSION_INFO_H_
static wxString FontLibrary()
static wxString FontConfig()
static wxString FreeType()
static wxString HarfBuzz()
#define KICOMMON_API
Definition kicommon.h:27