mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
21 lines
302 B
C++
21 lines
302 B
C++
#ifndef LOCATION_H
|
|
#define LOCATION_H
|
|
|
|
#include "Rect.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CLocation : public IChartObject
|
|
{
|
|
CHART_INTEGER m_nLocationType;
|
|
CRect m_oRect;
|
|
CHART_BOOLEAN m_bVisible;
|
|
public:
|
|
CLocation();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // LOCATION_H
|