// -*- C++ -*- // // Package: // Module: Printable // // Description: Interface class for simple I/O // // Implimentation: // // // Author: Martin Lohner // Created: Jan 23, 1997 // RCS(Id) // // Revision history // // RCS(Log) // system include files // user include files #include "Printable.hh" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // Printable::Printable() { } // Printable::Printable( const Printable& ) // { // } Printable::~Printable() { } // // assignment operators // // const Printable& Printable::operator=( const Printable& ) // { // } // // member functions // // // const member functions // // // static member functions // // ================================================================== // Comments, suggestions, get on line 1! // // $Id$ // $Log$ // Revision 1.1 2000/06/19 19:59:32 eugenio // Initial revision // // Revision 1.1 1997/11/11 01:17:36 mkl // Major rewrite: simplify tracing loops; add x-, y-tracing loops // //