Client Class Reference
The class to store client specific data.
More...
List of all members.
|
Public Member Functions |
| | Client (auto_ptr< Socket > s) |
| | The constructor with socket object specification.
|
|
| Client () |
| | The default constructor.
|
|
virtual | ~Client () |
| | The destructor.
|
Public Attributes |
|
std::wstring | chain |
|
LangIdToStringMap | m_selectedFamilies |
|
std::string | m_selectedTextProcessor |
|
TextParam | pitch |
|
TextParam | rate |
|
bool | rejecting |
|
auto_ptr< Socket > | socket |
|
TextParam | volume |
Detailed Description
This class stores all information about client connection. It contains current values for all text attributes, assigned for this connection and a socket object for data exchange. One client can has only one instance of this object because it automatically closes socket on object destruction.
Constructor & Destructor Documentation
| Client::Client |
( |
auto_ptr< Socket > |
s |
) |
[inline] |
- Parameters:
-
| [in] | s | The socket object for data exchange |