mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 17:42:40 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
25 lines
454 B
C++
25 lines
454 B
C++
#ifndef OOX_LOGIC_NOTE_PROPERTY_INCLUDE_H_
|
|
#define OOX_LOGIC_NOTE_PROPERTY_INCLUDE_H_
|
|
|
|
#include "./../WritingElement.h"
|
|
#include "NumFormat.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Logic
|
|
{
|
|
class NoteProperty
|
|
{
|
|
public:
|
|
NoteProperty();
|
|
~NoteProperty();
|
|
|
|
public:
|
|
property<Logic::NumFormat> NumFormat;
|
|
property<int> NumStart;
|
|
};
|
|
} // namespace Logic
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_LOGIC_NOTE_PROPERTY_INCLUDE_H_
|