libalcommon  1.14
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
almoduleinfo.h
Go to the documentation of this file.
1 
10 #pragma once
11 #ifndef _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_
12 #define _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_
13 
14 # include <string>
15 # include <vector>
16 
17 namespace AL
18 {
27  {
28  public:
29  std::string name;
31  std::string ip;
32  int port;
33  int processId;
34  bool isABroker;
35  bool keepAlive;
36  };
37 
38 }
39 
40 #endif // _LIBALCOMMON_ALCOMMON_ALMODULEINFO_H_
41 
42