#include <vector>
#include <msg/msg.h>
+// Helper class that associates instances of itself with each host.
+// Facilitate global operations on hosts, and retreiving of host name
+// and mailboxes.
class hostdata {
public:
static void create();
private:
// static list of hostdata's, used by create/destroy
static std::vector<hostdata> hosts;
- struct m_host_less;
const char* name;
std::string ctrl_mbox;