http_base.inl

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

INL
54
字号
// -*- c++ -*-// $Id: http_base.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_INLINEHTTP_Base::HTTP_Base (void)  : status_ (200),    line_ (0),    deliver_state_ (0),    no_headers_ (0),    iter_ (*(this->info_.table ())),    mb_ (0){}ACE_INLINEHTTP_Base::~HTTP_Base (void){  if (this->line_)    ACE_OS::free (this->line_);  if (this->mb_)    delete this->mb_;  this->line_ = 0;  this->mb_ = 0;}ACE_INLINE intHTTP_Base::status (void) const{  return this->status_;}ACE_INLINE const char *HTTP_Base::line (void) const{  return this->line_;}ACE_INLINE HTTP_Headers *HTTP_Base::http_headers (void){  return &(this->info_);}ACE_INLINE JAWS_Headers *HTTP_Base::headers (void){  return this->info_.table ();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?