00001 #ifndef __NITRO_POINTER_INTERFACE_CPP__ 00002 #define __NITRO_POINTER_INTERFACE_CPP__ 00003 00004 #include <utilities/pointer_interface.h> 00005 00006 namespace nitro 00007 { 00008 PointerInterface::PointerInterface( void ) 00009 { 00010 ItemCount = 0; 00011 } 00012 00013 /* virtual */ PointerInterface::~PointerInterface() 00014 { 00015 try 00016 { 00017 ItemCount = 0; 00018 } 00019 catch( ... ) 00020 { 00021 } 00022 } 00023 } 00024 00025 #endif