⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 local_locator.i

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 I
字号:
// -*- C++ -*-//// Local_Locator.i,v 1.3 2004/04/23 03:06:19 ossama ExpACE_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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -