libalcommon
2.0.6.8
|
00001 00010 #pragma once 00011 #ifndef _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_ 00012 #define _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_ 00013 00014 # include <alcommon/api.h> 00015 # include <string> 00016 # include <vector> 00017 00018 namespace AL 00019 { 00027 class ALModuleInfo 00028 { 00029 public: 00030 std::string name; 00031 int architecture; 00032 std::string ip; 00033 int port; 00034 int processId; 00035 bool isABroker; 00036 bool keepAlive; 00037 }; 00038 00039 } 00040 00041 #endif // _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_ 00042 00043