00001 // ===================================================================== 00021 // ===================================================================== 00022 #ifndef __TLISTCOMMAND_HH 00023 #define __TLISTCOMMAND_HH 00024 00025 #include "Tglobals.h" 00026 #include "TCommand.hh" 00027 00028 class TRunManager; 00029 00030 00050 class TListCommand 00051 : public TCommand 00052 { 00053 00054 public: 00055 TListCommand( TRunManager* manager ); 00056 ~TListCommand(); 00057 00058 public: 00059 Tvoid Execute( const TstringList& arguments ); 00060 00061 private: 00062 Tvoid normal() const; 00063 Tvoid detail( const Tstring& path ) const; 00064 00065 }; 00066 00067 #endif