Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "TGo4DynamicEntry.h"
00015
00016 #include "TGo4Log.h"
00017 #include "TGo4Status.h"
00018
00019 TGo4DynamicEntry::TGo4DynamicEntry() :
00020 TNamed(),
00021 fbProcessEntry(kTRUE)
00022 {
00023 GO4TRACE((15,"TGo4DynamicEntry::TGo4DynamicEntry()",__LINE__, __FILE__));
00024 }
00025
00026 TGo4DynamicEntry::TGo4DynamicEntry(const char* name, const char* title) :
00027 TNamed(name, title),
00028 fbProcessEntry(kTRUE)
00029 {
00030 GO4TRACE((15,"TGo4DynamicEntry::TGo4DynamicEntry(char*)",__LINE__, __FILE__));
00031 SetBit(TGo4Status::kGo4CanDelete);
00032 }
00033
00034 TGo4DynamicEntry::~TGo4DynamicEntry()
00035 {
00036 GO4TRACE((15,"TGo4DynamicEntry::~TGo4DynamicEntry()",__LINE__, __FILE__));
00037 }