19 lines
455 B
C++
19 lines
455 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#ifndef SKINNY_FONT_H_
|
|
#define SKINNY_FONT_H_
|
|
|
|
#include "SkinnyGlobal.h"
|
|
|
|
class QGuiApplication;
|
|
|
|
namespace SkinnyFont
|
|
{
|
|
SKINNY_EXPORT void init( QGuiApplication* );
|
|
}
|
|
|
|
#endif
|