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

This commit is contained in:
Sergey.Kirillov
2013-11-19 15:47:33 +00:00
committed by Alexander Trofimov
parent 0b39c5362a
commit 27111bbd45
1277 changed files with 14 additions and 14 deletions

View File

@ -0,0 +1,16 @@
#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;
}
}