Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef TAO_BIDIR_ORB_INITIALIZER_H
00013 #define TAO_BIDIR_ORB_INITIALIZER_H
00014
00015 #include "ace/pre.h"
00016
00017 #include "tao/BiDir_GIOP/bidirgiop_export.h"
00018
00019 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00020 # pragma once
00021 #endif
00022
00023 #include "tao/PI/PI.h"
00024 #include "tao/LocalObject.h"
00025
00026
00027
00028 #if defined(_MSC_VER)
00029 #pragma warning(push)
00030 #pragma warning(disable:4250)
00031 #endif
00032
00033 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00034
00035
00036 class TAO_BiDir_ORBInitializer
00037 : public virtual PortableInterceptor::ORBInitializer
00038 , public virtual ::CORBA::LocalObject
00039 {
00040 public:
00041
00042 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
00043
00044 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
00045
00046 private:
00047
00048
00049 void register_policy_factories (PortableInterceptor::ORBInitInfo_ptr info);
00050 };
00051
00052 TAO_END_VERSIONED_NAMESPACE_DECL
00053
00054 #if defined(_MSC_VER)
00055 #pragma warning(pop)
00056 #endif
00057
00058 #include "ace/post.h"
00059
00060 #endif