blob: acbc65f09755ed3cb86297a75962d5e972816df5 (
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
46
47
48
49
50
51
|
// -*- C++ -*-
//=============================================================================
/**
* @file Policy_Creator_T.h
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*/
//=============================================================================
#ifndef TAO_PORTABLESERVER_POLICY_CREATOR_T_H
#define TAO_PORTABLESERVER_POLICY_CREATOR_T_H
#include /**/ "ace/pre.h"
#include "tao/ORB_Constants.h"
#include "tao/PolicyC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Portable_Server
{
template <class POLICYTYPE, typename POLICYVALUE>
void create_policy (
POLICYTYPE *& policy,
POLICYVALUE &value,
const CORBA::Any& val
)
{
if ((val >>= value) == 0)
throw CORBA::PolicyError (CORBA::BAD_POLICY_VALUE);
ACE_NEW_THROW_EX (policy,
POLICYTYPE (value),
CORBA::NO_MEMORY (TAO::VMCID,
CORBA::COMPLETED_NO));
}
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_PORTABLESERVER_POLICY_CREATOR_T_H */
|