You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
508 B
C++
26 lines
508 B
C++
#pragma once
|
|
#ifndef AxisConcrete_h__
|
|
#define AxisConcrete_h__
|
|
|
|
#include "abstractaxis.h"
|
|
|
|
namespace NChart
|
|
{
|
|
|
|
class AFX_EXT_CLASS CAxisConcrete :
|
|
public CAbstractAxis
|
|
{
|
|
public:
|
|
CAxisConcrete(CAxisProxy* pProxy,CString label,CChartDataSet * pDataset,const CRect8& rcClient,DIRECTION direction,LAYOUTPOS pos);
|
|
virtual ~CAxisConcrete(void);
|
|
void SetProxy(CAxisProxy * pProxy);
|
|
CAxisProxy * GetProxy();
|
|
protected:
|
|
CAxisProxy *m_pProxy;
|
|
};
|
|
|
|
}//namespace
|
|
|
|
using namespace NChart;
|
|
|
|
#endif // AxisConcrete_h__
|