//----------------------------------------------------------------------------- // NastObject.cpp //----------------------------------------------------------------------------- #include "NastObject.h" #include "NastDumpContext.h" #include "NastDebug.h" // Extrawurst fuer msvc #ifdef _MSC_VER #include #else #include #endif //----------------------------------------------------------------------------- // Construktor + Destruktor //----------------------------------------------------------------------------- // Destruktor CNastObject::~CNastObject() { // vorerst nichts zu tun } // ---------------------------------------------------------------------------- // Debug // ---------------------------------------------------------------------------- void CNastObject::debugDump( CNastDumpContext &dumpContext ) const { (void)(dumpContext); // Dummy wegen warnings // static char szOut[101]; // ostrstream stream( szOut, 100 ); // stream << this; // dumpContext << "\n\t"; // dumpContext << "CNastObject at " << stream.str() <<"\n"; } void CNastObject::assertValid() const { // vorerst nichts zu tun }