Commit 531253c5 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

recents/recovers

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65601 954022d7-b5bf-4e40-9824-e11837661b57
parent c2f166a8
......@@ -2447,4 +2447,48 @@ namespace NSEditorApi
};
}
namespace NSEditorApi
{
class CAscLocalRecentsAll : public IMenuEventDataBase
{
private:
std::wstring m_sJSON;
int m_nId;
public:
CAscLocalRecentsAll()
{
}
virtual ~CAscLocalRecentsAll()
{
}
LINK_PROPERTY_STRING(JSON)
LINK_PROPERTY_INT(Id)
};
class CAscLocalOpenFileRecent_Recover : public IMenuEventDataBase
{
private:
int m_nId;
bool m_bIsRecover;
std::wstring m_sPath;
public:
CAscLocalOpenFileRecent_Recover()
{
m_bIsRecover = false;
}
virtual ~CAscLocalOpenFileRecent_Recover()
{
}
LINK_PROPERTY_BOOL(IsRecover)
LINK_PROPERTY_INT(Id)
LINK_PROPERTY_STRING(Path)
};
}
#endif //_BUILD_EDITOR_API_CROSSPLATFORM_H_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment