mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
20 lines
234 B
C++
20 lines
234 B
C++
#ifndef STATLINE_H
|
|
#define STATLINE_H
|
|
|
|
#include "VtColor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CStatLine
|
|
{
|
|
int m_nFlags;
|
|
int m_nStyle;
|
|
CVtColor m_oVtColor;
|
|
SINGLE m_snWidth;
|
|
public:
|
|
CStatLine();
|
|
};
|
|
}}
|
|
|
|
#endif // STATLINE_H
|