| 1 | #pragma once |
| 2 | |
| 3 | class CNodeArray : public CNodeBase { |
| 4 | public: |
| 5 | CNodeArray( ); |
| 6 | |
| 7 | virtual void Update( const PHOTSPOT Spot ); |
| 8 | |
| 9 | virtual ULONG GetMemorySize( ); |
| 10 | |
| 11 | virtual NODESIZE Draw( const PVIEWINFO View, int x, int y ); |
| 12 | |
| 13 | inline void SetTotal( ULONG total ) { m_ulTotal = total; } |
| 14 | inline ULONG GetTotal( void ) { return m_ulTotal; } |
| 15 | |
| 16 | inline void SetClass( CNodeClass* pNode ) { m_pNode = pNode; } |
| 17 | inline CNodeClass* GetClass( void ) { return m_pNode; } |
| 18 | |
| 19 | protected: |
| 20 | CNodeClass* m_pNode; |
| 21 | ULONG m_ulTotal; |
| 22 | INT m_iCurrent; |
| 23 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected