mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:59:17 +08:00
21 lines
415 B
C++
21 lines
415 B
C++
#pragma once
|
|
#ifndef PPTX_LOGIC_RUNBASE_INCLUDE_H_
|
|
#define PPTX_LOGIC_RUNBASE_INCLUDE_H_
|
|
|
|
#include "./../../WrapperWritingElement.h"
|
|
|
|
namespace PPTX
|
|
{
|
|
namespace Logic
|
|
{
|
|
class RunBase : public WrapperWritingElement
|
|
{
|
|
public:
|
|
RunBase(){}
|
|
virtual ~RunBase(){}
|
|
virtual CString GetText()const =0;
|
|
};
|
|
} // namespace Logic
|
|
} // namespace PPTX
|
|
|
|
#endif // PPTX_LOGIC_RUNBASE_INCLUDE_H
|