mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 20:25:04 +08:00
16 lines
395 B
C++
16 lines
395 B
C++
#include "stdafx.h"
|
|
#include "./../Converter.h"
|
|
|
|
namespace PPTX2EditorSimple
|
|
{
|
|
DWORD Converter::GetTLPresetClassFromStr(const CString& str)
|
|
{
|
|
if (str == _T("entr")) return 1;
|
|
if (str == _T("exit")) return 2;
|
|
if (str == _T("emph")) return 3;
|
|
if (str == _T("path")) return 4;
|
|
if (str == _T("verb")) return 5;
|
|
if (str == _T("mediacall")) return 6;
|
|
return 1;
|
|
}
|
|
} |