#ifndef T2DLL_T2DLGITEMCUSTOMERGAGE_H #define T2DLL_T2DLGITEMCUSTOMERGAGE_H #include "../common.h" #include "T2DlgItemGageBase.h" class AFX_CLASS_EXPORT T2DlgItemCustomerGage : public T2DlgItemGageBase { public: T2DlgItemCustomerGage(T2TowerDoc* towerDoc, T2ImageObj* imageObj, CPalette* palette); void SetTenant(T2Tenant*); protected: virtual int GetMinValue(); virtual int GetMaxValue(); virtual int GetValue(); virtual int GetBlueValue(); virtual int GetYellowValue(); virtual COLORREF GetGageColor(int value); virtual BOOL IsDrawInterior(); T2Tenant *mTenant; }; #endif