blob: b881e436af09082d34124a606905ecdc2e793416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "tao/IORInterceptor/IORInterceptor_Details.h"
#include "tao/SystemException.h"
ACE_RCSID (IORInterceptor,
IORInterceptor_Details,
"$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
void
IORInterceptor_Details::apply_policies (const CORBA::PolicyList &)
{
// There are currently no policies that apply to IOR Interceptors.
throw ::CORBA::INV_POLICY ();
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
|