Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TAO_ZIOP_ORB_INITIALIZER_H
00015 #define TAO_ZIOP_ORB_INITIALIZER_H
00016
00017 #include "ace/pre.h"
00018
00019 #include "tao/ZIOP/ziop_export.h"
00020
00021 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00022 # pragma once
00023 #endif
00024
00025 #include "tao/PI/PI.h"
00026
00027 #if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
00028
00029 #include "tao/LocalObject.h"
00030
00031
00032
00033 #if defined(_MSC_VER)
00034 #pragma warning(push)
00035 #pragma warning(disable:4250)
00036 #endif
00037
00038 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00039
00040 class TAO_ZIOP_Loader;
00041
00042
00043 class TAO_ZIOP_ORBInitializer
00044 : public virtual PortableInterceptor::ORBInitializer,
00045 public virtual ::CORBA::LocalObject
00046 {
00047 public:
00048 TAO_ZIOP_ORBInitializer (TAO_ZIOP_Loader* loader);
00049
00050
00051
00052
00053
00054
00055
00056
00057 virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);
00058
00059 virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
00060
00061
00062 private:
00063
00064
00065 void register_policy_factories (PortableInterceptor::ORBInitInfo_ptr info);
00066
00067 TAO_ZIOP_Loader* loader_;
00068 };
00069
00070 TAO_END_VERSIONED_NAMESPACE_DECL
00071
00072 #if defined(_MSC_VER)
00073 #pragma warning(pop)
00074 #endif
00075
00076 #endif
00077
00078 #include "ace/post.h"
00079
00080 #endif
00081