git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@68988 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Oleg.Korshul
2016-03-21 16:03:11 +00:00
committed by Alexander Trofimov
parent b5e6eae991
commit db69c4505f
2 changed files with 110 additions and 71 deletions

View File

@ -9,7 +9,7 @@ namespace NSDoctRenderer
class Q_DECL_EXPORT CDocBuilder
{
public:
CDocBuilder();
CDocBuilder(bool bIsCheckSystemFonts);
~CDocBuilder();
public:
@ -22,6 +22,13 @@ namespace NSDoctRenderer
bool Run(const wchar_t* path);
bool RunTextW(const wchar_t* commands);
bool RunTextA(const char* commands);
public:
static void Initialize();
static void Dispose();
private:
CDocBuilder_Private* m_pInternal;
};