| 14 | }; |
| 15 | |
| 16 | CNodeFunction::CNodeFunction( ) : |
| 17 | m_pEdit( NULL ), |
| 18 | m_nLines( 0 ), |
| 19 | m_nLongestLine( 0 ), |
| 20 | m_iWidth( 0 ), |
| 21 | m_iHeight( 0 ), |
| 22 | m_bRedrawNeeded( FALSE ) |
| 23 | { |
| 24 | m_nodeType = nt_function; |
| 25 | m_strName = _T( "" ); |
| 26 | m_dwMemorySize = sizeof( ULONG_PTR ); |
| 27 | } |
| 28 | |
| 29 | CNodeFunction::~CNodeFunction( ) |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected