00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "TGo4ExampleCommand.h"
00017
00018 #include "TGo4Log.h"
00019
00020 TGo4ExampleCommand::TGo4ExampleCommand() : TGo4Command()
00021 {
00022 TRACE((12,"TGo4ExampleCommand::TGo4ExampleCommand() ctor",__LINE__, __FILE__));
00023
00024
00025 fbIsEnabled=kTRUE;
00026 fbIsSynchron=kTRUE;
00027 SetReceiverName("ExampleApplication");
00028
00029 }
00030
00031 TGo4ExampleCommand::TGo4ExampleCommand(const TGo4ExampleCommand &right)
00032 :TGo4Command(right)
00033 {
00034 TRACE((12,"TGo4ExampleCommand::TGo4ExampleCommand() copy constructor",__LINE__, __FILE__));
00035
00036 }
00037 TGo4ExampleCommand::~TGo4ExampleCommand()
00038 {
00039 TRACE((12,"TGo4ExampleCommand::~TGo4ExampleCommand() dtor",__LINE__, __FILE__));
00040 }
00041
00042 TGo4ExampleCommand::TGo4ExampleCommand(const char* name, const char* desc)
00043 : TGo4Command(name,desc,6)
00044 {
00045 TRACE((12,"TGo4ExampleCommand::TGo4ExampleCommand(Text_t*, Text_t*) ctor",__LINE__, __FILE__));
00046
00047
00048 fbIsEnabled=kTRUE;
00049 fbIsSynchron=kTRUE;
00050 SetReceiverName("ExampleApplication");
00051
00052 }
00053
00054