00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 #include "jaus/core/discovery/querysubsystemlist.h" 00041 00042 using namespace JAUS; 00043 00052 QuerySubsystemList::QuerySubsystemList(const Address& dest, 00053 const Address& src) : Message(QUERY_SUBSYSTEM_LIST, dest, src) 00054 { 00055 } 00056 00057 00063 QuerySubsystemList::QuerySubsystemList(const QuerySubsystemList& message) : Message(QUERY_SUBSYSTEM_LIST) 00064 { 00065 *this = message; 00066 } 00067 00068 00074 QuerySubsystemList::~QuerySubsystemList() 00075 { 00076 00077 } 00078 00079 00085 QuerySubsystemList& QuerySubsystemList::operator =(const QuerySubsystemList& message) 00086 { 00087 if(this != &message) 00088 { 00089 CopyHeaderData(&message); 00090 } 00091 return *this; 00092 } 00093 00094 00095 /* End of File */