00001 // ===================================================================== 00002 // $Id: TBrowserUserInterface.cc,v 1.4 2004/03/07 10:30:31 goiwai Exp $ 00003 // $Name: CLDAQ-1-14-03 $ 00004 // $Log: TBrowserUserInterface.cc,v $ 00005 // Revision 1.4 2004/03/07 10:30:31 goiwai 00006 // ROOTに組みこむためのおまじないマクロを埋めこみました。 00007 // 全てにおいて完全に動作するわけではありません。 00008 // 00009 // Revision 1.3 2003/10/06 17:02:40 goiwai 00010 // *** empty log message *** 00011 // 00012 // Revision 1.2 2003/07/30 16:18:51 goiwai 00013 // ファイルにコミットログをつけることにしました. 00014 // 00015 // ===================================================================== 00016 #include "TBrowserUserInterface.hh" 00017 00018 TBrowserUserInterface::TBrowserUserInterface( const Tstring& history ) 00019 : TUserInterface( history ), theAcceptString( "" ) 00020 {;} 00021 00022 TBrowserUserInterface::~TBrowserUserInterface() 00023 {;} 00024 00025 Tbool TBrowserUserInterface::AcceptCommand() 00026 { 00027 return Ttrue; 00028 } 00029 00030 const Tstring& TBrowserUserInterface::GetInputCommand() 00031 { 00032 return theAcceptString; 00033 } 00034 00035 Tvoid TBrowserUserInterface::NotFoundCommand( const Tstring& commandname ) const 00036 { 00037 return; 00038 } 00039 00040 00041 00042 00043 #ifdef __CLDAQ_ROOT_DLL 00044 ClassImp(TBrowserUserInterface) 00045 #endif