mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
21 lines
406 B
C++
21 lines
406 B
C++
#pragma once
|
|
#ifndef OOX_LOGIC_RUN_ITEM_BASE_INCLUDE_H_
|
|
#define OOX_LOGIC_RUN_ITEM_BASE_INCLUDE_H_
|
|
|
|
#include "./../WritingElement.h"
|
|
#include <string>
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Logic
|
|
{
|
|
class RunItemBase : public WritingElement
|
|
{
|
|
public:
|
|
virtual const std::string toTxt() const = 0;
|
|
};
|
|
} // namespace Logic
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_LOGIC_RUN_ITEM_BASE_INCLUDE_H_
|