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