4 #include "VirtualUserInterface.h" 35 bool isError()
const {
return _code!=~0; }
37 const string&
error()
const {
return _error;}
45 int code()
const {
return _code; }
48 #pragma warning (disable : 4251) 78 int count()
const {
return _count; }
97 ReceiveResponse(::VirtualUserInterface& vu,
const string& data,
const string& error);
121 PatternResponse(::VirtualUserInterface& vu,
const string& data,
int patternIndex);
123 PatternResponse(::VirtualUserInterface& vu,
const string& data,
const string& error);
int code() const
The numeric value of any error .
Definition: IpResponses.h:45
Objects of this class are returned by discard methods.
Definition: IpResponses.h:59
The base class of Response classes.
Definition: IpResponses.h:19
#define IP_API
Definition: Ip.h:21
Objects of this class are returned by receive methods.
Definition: IpResponses.h:89
const string & error() const
A string describing the error that has occurred. Empty if no error has occurred
Definition: IpResponses.h:37
Definition: IpEndPoint.h:9
int count() const
discard methods return objects of this class.
Definition: IpResponses.h:78
The objects of this class are returned by receive methods.
Definition: IpResponses.h:115
int index() const
Objects of this class are returned by receive methods. The index property holds a non-negative intege...
Definition: IpResponses.h:137
bool isError() const
Has there been an error?
Definition: IpResponses.h:35