Muster SDK  8.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MSession.h
Go to the documentation of this file.
1 /*****************************************************************************
2  **
3  ** Header file for Muster API Session object
4  **
5  ** Name : MSession.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 MSESSION_H
19 #define MSESSION_H
20 
21 namespace MClientLib {
22 
26  typedef struct MUSTER {
27  std::string serverAddress;
28  std::string username;
29  int serverPort;
30  int status;
31  bool async;
32  void* context;
33  } MUSTER ;
34 
38  typedef struct MUSTERCLIENT {
39  std::string clientAddress;
40  int clientPort;
41  int status;
42  bool async;
43  void* context;
44  } MUSTERCLIENT ;
45 }
46 
47 #endif