| 3 | #include "CNodeBase.h" |
| 4 | |
| 5 | class CNodeInt16 : public CNodeBase |
| 6 | { |
| 7 | public: |
| 8 | CNodeInt16( ); |
| 9 | |
| 10 | virtual void Update( const PHOTSPOT Spot ); |
| 11 | |
| 12 | virtual ULONG GetMemorySize( ) { return sizeof( __int16 ); } |
| 13 | |
| 14 | virtual NODESIZE Draw( const PVIEWINFO View, int x, int y ); |
| 15 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected