summaryrefslogtreecommitdiff
path: root/TAO/tao/Utils/PolicyList_Destroyer.h
blob: c0485d196f92e0f4968c2c702a0daf45d5629200 (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
/**
 * @file PolicyList_Destroyer.h
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 */
#ifndef PolicyList_Destroyer__hpp_
#define PolicyList_Destroyer__hpp_

#include <tao/PolicyC.h>

namespace TAO
{
namespace Utils
{

/**
 * @class PolicyList_Destroyer
 *
 * @brief Automatically destroy all the policies set in a PolicyList
 *
 */
class PolicyList_Destroyer
  : public CORBA::PolicyList
{
public:
  PolicyList_Destroyer(CORBA::ULong length_hint);
  ~PolicyList_Destroyer();
};

} // namespace Utils
} // namespace TAO

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

#endif // PolicyList_Destroyer__hpp_