mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
22 lines
297 B
C++
22 lines
297 B
C++
#ifndef FRAME_H
|
|
#define FRAME_H
|
|
|
|
#include "VtColor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CFrame : public IChartObject
|
|
{
|
|
int m_nStyle;
|
|
SINGLE m_snWidth;
|
|
CVtColor m_oFrameColor;
|
|
CVtColor m_oSpaceColor;
|
|
public:
|
|
CFrame();
|
|
|
|
bool Read(CHWPStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // FRAME_H
|