#ifndef SimpleTreeDump_H #define SimpleTreeDump_H #include "SimpleTreeRead.h" class SimpleTreeDump: public SimpleTreeRead { public: SimpleTreeDump(); ~SimpleTreeDump(); virtual void analyze(); private: SimpleTreeDump( const SimpleTreeRead& st ); SimpleTreeDump& operator=( const SimpleTreeRead& st ); }; #endif