Files
core/DesktopEditor/fontengine/ApplicationFontsWorker.h
Elen.Subbotina e5665754cd .....
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61947 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:54:41 +03:00

22 lines
583 B
C++

#ifndef _BUILD_APPLICATIONFONTSWORKER_H_
#define _BUILD_APPLICATIONFONTSWORKER_H_
#include <string>
#include <vector>
class CApplicationFontsWorker
{
public:
std::vector<std::wstring> m_arAdditionalFolders;
public:
CApplicationFontsWorker();
~CApplicationFontsWorker();
std::vector<std::wstring> CheckApplication(bool bIsNeedSystemFonts,
unsigned char* pDataSrc, unsigned int nLenSrc,
unsigned char*& pDataDst, unsigned int& nLenDst);
};
#endif // _BUILD_APPLICATIONFONTSWORKER_H_