MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / CNodeArray

Class CNodeArray

ReClass/CNodeArray.h:3–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#pragma once
2
3class CNodeArray : public CNodeBase {
4public:
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
19protected:
20 CNodeClass* m_pNode;
21 ULONG m_ulTotal;
22 INT m_iCurrent;
23};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected