naming_context.h

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

H
71
字号
/* -*- C++ -*- */// $Id: Naming_Context.h 78251 2007-05-02 14:13:45Z johnnyw $#ifndef NAMING_CONTEXT_H#define NAMING_CONTEXT_H#include "ace/Naming_Context.h"#include "ace/OS_NS_stdio.h"#include "Name_Binding.h"// Listing 1 code/ch21class Naming_Context : public ACE_Naming_Context{public:  typedef ACE_Naming_Context inherited;  int rebind (const char *name_in,              const char *value_in,              const char *type_in = "")  {    return this->inherited::rebind (name_in, value_in, type_in);  }  int rebind (const char *name_in,              float value_in,              const char *type_in = "")  {    char buf[BUFSIZ];    ACE_OS::sprintf (buf, "%2f", value_in);    return this->inherited::rebind (name_in,                                    (const char *)buf,                                    type_in);  }  int rebind (const char *name_in,              int value_in,              const char *type_in = "")  {    char buf[BUFSIZ];    ACE_OS::sprintf (buf, "%d", value_in );    return this->inherited::rebind (name_in,                                    (const char *)buf,                                    type_in);  }  // Listing 1  // Listing 2 code/ch21  Name_Binding *fetch (const char *name)  {    ACE_NS_WString value;    char *type = 0;    if (this->resolve (name, value, type) != 0 ||        value.length () < 1)      {        return 0;      }    Name_Binding *rval =      new Name_Binding (ACE_NS_WString (name),                        value,                        type);    delete [] type;    return rval;  }// Listing 2};#endif /* NAMING_CONTEXT_H */

⌨️ 快捷键说明

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