mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 13:03:11 +08:00
21 lines
427 B
C++
21 lines
427 B
C++
#pragma once
|
|
#ifndef PPTX_LOGIC_PATHBASE_INCLUDE_H_
|
|
#define PPTX_LOGIC_PATHBASE_INCLUDE_H_
|
|
|
|
#include "./../../WrapperWritingElement.h"
|
|
|
|
namespace PPTX
|
|
{
|
|
namespace Logic
|
|
{
|
|
class PathBase : public WrapperWritingElement
|
|
{
|
|
public:
|
|
PathBase(){}
|
|
virtual ~PathBase(){}
|
|
virtual CString GetODString()const = 0;
|
|
};
|
|
} // namespace Logic
|
|
} // namespace PPTX
|
|
|
|
#endif // PPTX_LOGIC_PATHBASE_INCLUDE_H_
|