summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/RTEvent/lib/EC_Destroyer.h
blob: 88e7c470977296b19d3a1852b6030aa8cbfe4a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 * @file EC_Destroyer.h
 *
 * @author Carlos O'Ryan <coryan@uci.edu>
 */

#ifndef TAO_PERF_RTEC_EC_DESTROYER_H
#define TAO_PERF_RTEC_EC_DESTROYER_H

#include "rtec_perf_export.h"
#include "orbsvcs/RtecEventChannelAdminC.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

/**
 * @class EC_Destroyer
 *
 * @brief Implement a helper class to destroy a Real-time Event
 * Channel.
 */
class TAO_RTEC_Perf_Export EC_Destroyer
{
public:
  /// Constructor
  EC_Destroyer (RtecEventChannelAdmin::EventChannel_ptr ec);

  /// Destructor
  /**
   * @todo This method could benefit from the error logging described
   * in Servant_var.cpp
   */
  ~EC_Destroyer (void);

private:
  /// The event channel
  RtecEventChannelAdmin::EventChannel_var ec_;
};

#if defined(__ACE_INLINE__)
#include "EC_Destroyer.inl"
#endif /* __ACE_INLINE__ */

#endif /* TAO_PERF_RTEC_EC_DESTROYER_H */