//=========================================================================== // Level3_ValidationModule.hh // Author Farrukh Azfar 15th January 2001 //=========================================================================== #ifndef TL3D_DUMPMODULE_HH #define TL3D_DUMPMODULE_HH //----------------- // Include files //----------------- #include "Framework/APPModule.hh" //----------------------------------------- // Main class: //----------------------------------------- class TL3D_DumpModule : public AppModule { public: //-------------- // Constructors //-------------- TL3D_DumpModule(const char* const theName, const char* const theDescription ); //------------- // Destructors //------------- virtual ~TL3D_DumpModule(); //------------- // Operations //------------- virtual AppResult event( AbsEvent* anEvent ); private: }; // end class definition #endif