00001 //============================================================================= 00002 /** 00003 * @file nsconf.h 00004 * 00005 * $Id: nsconf.h 51175 2003-07-21 23:51:40Z dhinton $ 00006 * 00007 * Name service configuration file. 00008 * 00009 * 00010 * @author Chris Cleeland 00011 * @author Douglas C. Schmidt 00012 */ 00013 //============================================================================= 00014 00015 #ifndef TAO_NAMESERVICE_CONF_H 00016 #define TAO_NAMESERVICE_CONF_H 00017 #include /**/ "ace/pre.h" 00018 #include "ace/config-all.h" 00019 00020 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00021 # pragma once 00022 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00023 00024 // TAO Naming Service. 00025 00026 // Memory mapping address used by TAO's Naming Service when run in 00027 // persistent mode. 00028 #if !defined (TAO_NAMING_BASE_ADDR) 00029 # define TAO_NAMING_BASE_ADDR ACE_DEFAULT_BASE_ADDR 00030 #endif /* ! TAO_NAMING_BASE_ADDR */ 00031 00032 // Poa id of the root Naming Context in a Naming server. 00033 #if !defined (TAO_ROOT_NAMING_CONTEXT) 00034 # define TAO_ROOT_NAMING_CONTEXT "NameService" 00035 #endif /* ! TAO_ROOT_NAMING_CONTEXT */ 00036 00037 // The name under which the index of naming contexts is stored in 00038 // persistent naming service. 00039 #if !defined (TAO_NAMING_CONTEXT_INDEX) 00040 # define TAO_NAMING_CONTEXT_INDEX "Naming_Context_Index" 00041 #endif /* ! TAO_NAMING_CONTEXT_INDEX */ 00042 00043 00044 #include /**/ "ace/post.h" 00045 #endif /*TAO_NAMESERVICE_CONF_H*/
1.3.6