2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 void Request::reset ()
12 this->command_.clear ();
17 Request& Request::operator ()(const ACE_CString& cmd)
25 void Request::command (const ACE_CString& cmd)
31 const ACE_CString& Request::command () const
33 return this->command_;
37 Request& Request::operator <<(const ACE_CString& arg)
41 if (!this->args_.empty ()) this->args_ += ' ' ;
48 const ACE_CString& Request::arguments () const
55 ACE_END_VERSIONED_NAMESPACE_DECL