added class for "encrypt" data event

This commit is contained in:
Maxim Kadushkin
2018-07-04 14:37:48 +03:00
parent 2b2352fc74
commit 1c94b64399

View File

@ -2809,4 +2809,18 @@ namespace NSEditorApi
};
}
namespace NSEditorApi
{
class CEncryptData : public IMenuEventDataBase
{
public:
CEncryptData(){}
virtual ~CEncryptData(){}
LINK_PROPERTY_STRING(Path)
private:
std::wstring m_sPath;
};
}
#endif //_BUILD_EDITOR_API_CROSSPLATFORM_H_