/** * @file PriorityBand_Setup.h * * @author Carlos O'Ryan */ #ifndef TAO_PERF_RTEC_PRIORITYBAND_SETUP_H #define TAO_PERF_RTEC_PRIORITYBAND_SETUP_H #include "rtec_perf_export.h" #include "tao/ORB.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ class RTCORBA_Setup; /** * @class PriorityBand_Setup * * @brief Simplify the initialization of performance tests. */ class TAO_RTEC_Perf_Export PriorityBand_Setup { public: /// Constructor PriorityBand_Setup (CORBA::ORB_ptr orb, const RTCORBA_Setup &rtcorba_setup); /// Destructor /** * It is a no-op, but it shuts up g++ */ ~PriorityBand_Setup (); }; #endif /* TAO_PERF_RTEC_PRIORITYBAND_SETUP_H */