?? parse_http_response.i
字號:
// -*- c++ -*-// parse_http_response.i,v 1.1 2000/04/27 23:43:18 jxh Exp#if !defined (ACE_HAS_INLINED_OSCALLS)# undef ACE_INLINE# define ACE_INLINE#endif /* ACE_HAS_INLINED_OSCALLS */ACE_INLINE intParse_HTTP_Response::code (void) const{ return this->code_;}ACE_INLINE const char *Parse_HTTP_Response::code_str (void) const{ return this->code_str_ ? this->code_str_ : "200";}ACE_INLINE intParse_HTTP_Response::major_version (void) const{ return this->major_version_;}ACE_INLINE intParse_HTTP_Response::minor_version (void) const{ return this->minor_version_;}ACE_INLINE const char *Parse_HTTP_Response::version (void) const{ return this->version_ ? this->version_ : "HTTP/0.9";}ACE_INLINE intParse_HTTP_Response::error (void) const{ return this->error_;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -