Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef TAO_DYNVALUEBOX_I_H
00017 #define TAO_DYNVALUEBOX_I_H
00018 #include "ace/pre.h"
00019
00020 #include "tao/DynamicAny/DynValueCommon_i.h"
00021
00022 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00023 # pragma once
00024 #endif
00025
00026 #if defined (_MSC_VER)
00027 # pragma warning(push)
00028 # pragma warning (disable:4250)
00029 #endif
00030
00031 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00032
00033
00034
00035
00036
00037
00038 class TAO_DynamicAny_Export TAO_DynValueBox_i
00039 : public virtual DynamicAny::DynValueBox,
00040 public virtual TAO_DynValueCommon_i
00041 {
00042 public:
00043 TAO_DynValueBox_i (void);
00044
00045 ~TAO_DynValueBox_i (void);
00046
00047 virtual CORBA::Any * get_boxed_value (void);
00048
00049 virtual void set_boxed_value (const CORBA::Any & boxed);
00050
00051 virtual DynamicAny::DynAny_ptr get_boxed_value_as_dyn_any (void);
00052
00053 virtual void set_boxed_value_as_dyn_any (DynamicAny::DynAny_ptr boxed);
00054 };
00055
00056 TAO_END_VERSIONED_NAMESPACE_DECL
00057
00058 #if defined(_MSC_VER)
00059 # pragma warning(pop)
00060 #endif
00061
00062 #include "ace/post.h"
00063 #endif