Muster SDK  8.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MServer.h
Go to the documentation of this file.
1 /*****************************************************************************
2  **
3  ** Header file for Muster API Server object
4  **
5  ** Name : MServer.h
6  ** Author : Leonardo Bernardini
7  ** Version : 1.0, Sat Mar 2nd 2013
8  **
9  ** Copyright 2000-2014, Virtual Vertex
10  ** All Rights Reserved.
11  **
12  ** This file contains UNPUBLISHED PROPRIETARY SOURCE CODE.
13  ** The contents of this file may not be disclosed to third parties, copied
14  ** or duplicated in any form, in whole or in part, without the prior written
15  ** permission of the author.
16  **
17  *****************************************************************************/
18 #ifndef MSERVER_H
19 #define MSERVER_H
20 
21 #include <string>
22 
23 namespace MClientLib {
24 
28  typedef struct MUSTERSERVER {
29  bool running;
30  bool registered;
31  std::string hostId;
32  std::string customer;
33  std::string company;
35  std::string buildNumberString;
36  int platform;
37  std::string licenseExpiresOn;
40  long long int poolsCount;
41  long long int instancesCount;
42  long long int jobsCount;
43  long long int logsCount;
44  } MUSTERSERVER;
45 }
46 
47 #endif
std::string customer
Definition: MServer.h:32
std::string company
Definition: MServer.h:33
std::string buildNumberString
Definition: MServer.h:35
Definition: MServer.h:28
int enabledHosts
Definition: MServer.h:38
long long int poolsCount
Definition: MServer.h:40
std::string licenseExpiresOn
Definition: MServer.h:37
std::string hostId
Definition: MServer.h:31
bool running
Definition: MServer.h:29
int platform
Definition: MServer.h:36
long long int logsCount
Definition: MServer.h:43
long long int jobsCount
Definition: MServer.h:42
struct MClientLib::MUSTERSERVER MUSTERSERVER
long long int instancesCount
Definition: MServer.h:41
int networkProtocolVersion
Definition: MServer.h:39
std::string applicationVersionString
Definition: MServer.h:34
bool registered
Definition: MServer.h:30