GlobalObjects
Lade ...
Suche ...
Keine Treffer
GloClientInfo.h
gehe zur Dokumentation dieser Datei
1#ifndef INC_GLOCLIENTINFO_H
2#define INC_GLOCLIENTINFO_H
3//-----------------------------------------------------------------------------
36//-----------------------------------------------------------------------------
37#include <string>
38#include "GloTypes.h"
39
40#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
41 #include <winsock.h>
42#endif
43
44#ifdef _DEBUG
45 #include <iostream>
46#endif // _DEBUG
47//-----------------------------------------------------------------------------
48namespace glo
49{
50 //---------------------------------------------------------------------------
64 {
65 public:
66 //-----------------------------------------------------------------------
78 SOCKET m_nSocket;
79 //-----------------------------------------------------------------------
89 std::string m_strClientName;
90 //-----------------------------------------------------------------------
100 unsigned int m_uiCommunicatorID;
101 //-----------------------------------------------------------------------
112 //-----------------------------------------------------------------------
122 std::string m_sSchemaName;
123 //-----------------------------------------------------------------------
124
125 //============== constructor
126 //-----------------------------------------------------------------------
137 //------------------------------------------------------------------------
138 };
139 //---------------------------------------------------------------------------
140} // namespace glo
141#endif
Für jede Bibliothek, hier 'GlobalObjects' gibt es eine Typen-Datei.
Definition GloAbstractBaseLot.h:42
Eine Struktur um ClientDaten zwischen Datenbank und Client zu transportieren.
Definition GloClientInfo.h:64
std::string m_strCommunicatorAdress
Definition GloClientInfo.h:111
SOCKET m_nSocket
Definition GloClientInfo.h:78
std::string m_sSchemaName
Definition GloClientInfo.h:122
std::string m_strClientName
Definition GloClientInfo.h:89
ClientInfo()
Definition GloClientInfo.h:136
unsigned int m_uiCommunicatorID
Definition GloClientInfo.h:100