00001 // ===================================================================== 00002 // $Id: TSystemAction.hh,v 1.2 2003/07/30 16:21:21 goiwai Exp $ 00003 // $Name: CLDAQ-1-08-02 $ 00004 // 00005 // $Log: TSystemAction.hh,v $ 00006 // Revision 1.2 2003/07/30 16:21:21 goiwai 00007 // ファイルにコミットログをつけることにしました. 00008 // 00009 // ===================================================================== 00010 #ifndef __TSYSTEMACTION_HH 00011 #define __TSYSTEMACTION_HH 00012 00013 #include "Tglobals.h" 00014 00015 class TRunManager; 00016 00017 class TSystemAction 00018 { 00019 00020 public: 00021 TSystemAction(); 00022 virtual ~TSystemAction(); 00023 00024 public: 00025 virtual Tvoid BeginOfSystemAction( TRunManager* manager ); 00026 virtual Tvoid EndOfSystemAction( TRunManager* manager ); 00027 00028 }; 00029 00030 #endif