00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef IMR_INS_LOCATOR_H
00015 #define IMR_INS_LOCATOR_H
00016 #include "ace/pre.h"
00017
00018 #include "tao/IORTable/IORTable.h"
00019
00020 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00021 # pragma once
00022 #endif
00023
00024 #include "tao/LocalObject.h"
00025
00026
00027 class ImR_Locator_i;
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 class INS_Locator
00038 : public virtual IORTable::Locator,
00039 public virtual ::CORBA::LocalObject
00040 {
00041 public:
00042 INS_Locator (ImR_Locator_i& loc);
00043
00044
00045 char* locate (const char *object_key);
00046
00047 private:
00048 ImR_Locator_i& imr_locator_;
00049 };
00050
00051 #include "ace/post.h"
00052 #endif