Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TAO_RT_CURRENT_H
00015 #define TAO_RT_CURRENT_H
00016 #include "ace/pre.h"
00017
00018 #include "tao/orbconf.h"
00019
00020 #if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
00021
00022 #include "tao/RTCORBA/RTCORBA_includeC.h"
00023 #include "tao/LocalObject.h"
00024
00025 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00026 # pragma once
00027 #endif
00028
00029 #if defined(_MSC_VER)
00030 #pragma warning(push)
00031 #pragma warning(disable:4250)
00032 #endif
00033
00034 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00035
00036
00037
00038
00039
00040
00041
00042
00043 class TAO_RTCORBA_Export TAO_RT_Current
00044 : public RTCORBA::Current
00045 , public ::CORBA::LocalObject
00046 {
00047 public:
00048
00049
00050 TAO_RT_Current (TAO_ORB_Core *orb_core);
00051
00052 virtual RTCORBA::Priority the_priority (void);
00053
00054 virtual void the_priority (RTCORBA::Priority the_priority);
00055
00056 protected:
00057
00058
00059
00060 virtual ~TAO_RT_Current (void);
00061
00062 private:
00063
00064
00065 TAO_ORB_Core * const orb_core_;
00066
00067 };
00068
00069 TAO_END_VERSIONED_NAMESPACE_DECL
00070
00071 #if defined(_MSC_VER)
00072 #pragma warning(pop)
00073 #endif
00074
00075 #endif
00076
00077 #include "ace/post.h"
00078 #endif