// $Id$ // ============================================================================ // // = LIBRARY // TAO // // = FILENAME // RT_Current.h // // = AUTHOR // Carlos O'Ryan (coryan@cs.wustl.edu) // // ============================================================================ #ifndef TAO_RT_CURRENT_H #define TAO_RT_CURRENT_H #include "ace/pre.h" #include "tao/orbconf.h" #if (TAO_HAS_RT_CORBA == 1) #include "tao/RTCORBAS.h" #include "tao/LocalObject.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #if defined(_MSC_VER) #if (_MSC_VER >= 1200) #pragma warning(push) #endif /* _MSC_VER >= 1200 */ #pragma warning(disable:4250) #endif /* _MSC_VER */ class TAO_Export TAO_RT_Current : public RTCORBA::Current, public CORBA::LocalObject { // = TITLE // RTCORBA::Current interface iplementation. // // = DESCRIPTION // Allows setting/getting the priority of the current thread. // public: TAO_RT_Current (TAO_ORB_Core *orb_core); // Default constructor. virtual ~TAO_RT_Current (void); // The destructor. virtual RTCORBA::Priority the_priority (CORBA::Environment &ACE_TRY_ENV = TAO_default_environment ()) ACE_THROW_SPEC ((CORBA::SystemException)); virtual void the_priority (RTCORBA::Priority the_priority, CORBA::Environment &ACE_TRY_ENV = TAO_default_environment ()) ACE_THROW_SPEC ((CORBA::SystemException)); private: TAO_ORB_Core *orb_core_; // ORB Core that owns us. }; #if defined (__ACE_INLINE__) # include "tao/RT_Current.i" #endif /* __ACE_INLINE__ */ #if defined(_MSC_VER) && (_MSC_VER >= 1200) #pragma warning(pop) #endif /* _MSC_VER */ #endif /* TAO_HAS_RT_CORBA == 1 */ #include "ace/post.h" #endif /* TAO_RT_CURRENT_H */