| 2 | #include "CNodeCustom.h" |
| 3 | |
| 4 | CNodeCustom::CNodeCustom( ) |
| 5 | { |
| 6 | m_nodeType = nt_custom; |
| 7 | m_strName = _T( "Custom" ); |
| 8 | m_ulMemorySize = sizeof( void* ); |
| 9 | } |
| 10 | |
| 11 | void CNodeCustom::Update( const PHOTSPOT Spot ) |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected