parse_http_response.inl

来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· INL 代码 · 共 44 行

INL
44
字号
// -*- c++ -*-// $Id: parse_http_response.inl 73790 2006-07-27 20:43:46Z wotte $#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 + =
减小字号Ctrl + -
显示快捷键?