Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4RevServ.h"
00015
00016 #include "TGo4Log.h"
00017 #include "TGo4RevServParameter.h"
00018
00019 TGo4RevServ::TGo4RevServ(const char* name) :
00020 TGo4MbsSource(name, GETEVT__REVSERV)
00021 {
00022 GO4TRACE((15,"TGo4RevServ::TGo4RevServ(const char*)",__LINE__, __FILE__));
00023 TGo4Log::Debug(" New Event Source RevServ %s: ",name);
00024 Open();
00025 }
00026
00027 TGo4RevServ::TGo4RevServ(TGo4RevServParameter* par) :
00028 TGo4MbsSource(par, GETEVT__REVSERV)
00029 {
00030 GO4TRACE((15,"TGo4RevServ::TGo4RevServ(TGo4RevServParameter*)",__LINE__, __FILE__));
00031
00032 TGo4Log::Debug(" New Event Source RevServ %s: ",GetName());
00033
00034 Open();
00035 }
00036
00037 TGo4RevServ::TGo4RevServ()
00038
00039 {
00040 GO4TRACE((15,"TGo4RevServ::TGo4RevServ()",__LINE__, __FILE__));
00041 }
00042
00043 TGo4RevServ::~TGo4RevServ()
00044 {
00045 GO4TRACE((15,"TGo4RevServ::~TGo4RevServ()",__LINE__, __FILE__));
00046 Close();
00047 }