/** * @file RIR_Narrow.h * * @author Jody Hagins * @author Carlos O'Ryan */ #ifndef TAO_PERF_RTEC_RIR_NARROW_H #define TAO_PERF_RTEC_RIR_NARROW_H #include "tao/ORB.h" #include "tao/Object.h" /** * @class RIR_Narrow * * @brief Implement a helper method to narrow the results from * resolve_initial_references. */ template class RIR_Narrow { public: typedef typename Interface::_ptr_type Interface_ptr; typedef typename Interface::_var_type Interface_var; static Interface_ptr resolve (CORBA::ORB_ptr orb, const char *object_id); }; #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) #include "RIR_Narrow.cpp" #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ #endif /* TAO_PERF_RTEC_RIR_NARROW_H */