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