2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 void Response::reset ()
13 this->set_version (EMPTY);
14 this->status_ = Status ();
18 void Response::reset (const Status& status)
21 this->set_version (EMPTY);
22 this->status_ = status;
26 void Response::reset (const ACE_CString& version, const Status& status)
29 this->set_version (version);
30 this->status_ = status;
34 void Response::set_status(const Status& status)
36 this->status_ = status;
39 /// Return the status.
41 const Status& Response::get_status() const
49 ACE_END_VERSIONED_NAMESPACE_DECL