Files
core/ASCOfficePPTXFile/PPTXFormat/Logic/Path2D/PathBase.h

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_