GlobalObjects
Loading...
Searching...
No Matches
GloClientInfo.h
Go to the documentation of this file.
1#ifndef INC_GLOCLIENTINFO_H
2#define INC_GLOCLIENTINFO_H
3//-----------------------------------------------------------------------------
43//-----------------------------------------------------------------------------
44#include <string>
45#include "GloTypes.h"
46
47#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
48 #include <winsock.h>
49#endif
50
51#ifdef _DEBUG
52 #include <iostream>
53#endif // _DEBUG
54//-----------------------------------------------------------------------------
55namespace glo
56{
57 //---------------------------------------------------------------------------
71 {
72 public:
73 //-----------------------------------------------------------------------
85 SOCKET m_nSocket;
86 //-----------------------------------------------------------------------
96 std::string m_strClientName;
97 //-----------------------------------------------------------------------
107 unsigned int m_uiCommunicatorID;
108 //-----------------------------------------------------------------------
119 //-----------------------------------------------------------------------
129 std::string m_sSchemaName;
130 //-----------------------------------------------------------------------
131
132 //============== constructor
133 //-----------------------------------------------------------------------
144 //------------------------------------------------------------------------
145 };
146 //---------------------------------------------------------------------------
147} // namespace glo
148#endif
For each library, here 'GlobalObjects' there is a type file.
Definition GloAbstractBaseLot.h:49
A structure to transport client data between database and client.
Definition GloClientInfo.h:71
std::string m_strCommunicatorAdress
Definition GloClientInfo.h:118
SOCKET m_nSocket
Definition GloClientInfo.h:85
std::string m_sSchemaName
Definition GloClientInfo.h:129
std::string m_strClientName
Definition GloClientInfo.h:96
ClientInfo()
Definition GloClientInfo.h:143
unsigned int m_uiCommunicatorID
Definition GloClientInfo.h:107