local_locator.inl

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

INL
44
字号
// -*- C++ -*-//// $Id: Local_Locator.inl 73790 2006-07-27 20:43:46Z wotte $ACE_INLINEACE_URL_Record::ACE_URL_Record (void)  : id_ (0),    offer_ (0){}ACE_INLINEACE_URL_Record::ACE_URL_Record (ACE_URL_Offer *offer)  : offer_ (offer){  char buf[ACE_OFFER_ID_LENGTH];  ACE_NEW (this->id_, ACE_WString (ACE_ID_Generator::get_new_id (buf)));}ACE_INLINEACE_URL_Record::~ACE_URL_Record (void){  delete this->id_;  delete this->offer_;}ACE_INLINE boolACE_URL_Record::operator== (const ACE_URL_Record &rhs) const{  return this == &rhs || *this->id_ == *rhs.id_;}ACE_INLINE boolACE_URL_Record::operator!= (const ACE_URL_Record &rhs) const{  return !(*this == rhs);}ACE_INLINEACE_URL_Local_Locator::~ACE_URL_Local_Locator (void){}

⌨️ 快捷键说明

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