mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 00:03:33 +08:00
22 lines
299 B
C++
22 lines
299 B
C++
#ifndef STATLINE_H
|
|
#define STATLINE_H
|
|
|
|
#include "VtColor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CStatLine : public IChartObject
|
|
{
|
|
int m_nFlags;
|
|
int m_nStyle;
|
|
CVtColor m_oVtColor;
|
|
SINGLE m_snWidth;
|
|
public:
|
|
CStatLine();
|
|
|
|
bool Read(CHWPStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // STATLINE_H
|