local_locator.i

来自「ACE自适配通信环境(ADAPTIVE Communication Enviro」· I 代码 · 共 44 行

I
44
字号
// -*- 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 + =
减小字号Ctrl + -
显示快捷键?