/usr/include/tao/Policy_Current.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | // -*- C++ -*-
//=============================================================================
/**
* @file Policy_Current.h
*
* $Id: Policy_Current.h 81429 2008-04-24 18:49:54Z johnnyw $
*
* An implementation for the CORBA::PolicyCurrent interface.
*
*
* @author Carlos O'Ryan (coryan@cs.wustl.edu)
*/
//=============================================================================
#ifndef TAO_POLICY_CURRENT_H
#define TAO_POLICY_CURRENT_H
#include /**/ "ace/pre.h"
#include "tao/orbconf.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if (TAO_HAS_CORBA_MESSAGING == 1)
#include "tao/Policy_CurrentC.h"
#include "tao/LocalObject.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Policy_Current_Impl;
class TAO_Policy_Current
: public CORBA::PolicyCurrent
, public ::CORBA::LocalObject
{
public:
/// Constructor
TAO_Policy_Current (void);
/// Obtain a single policy.
CORBA::Policy_ptr get_policy (CORBA::PolicyType policy);
/// Obtain a single cached policy.
CORBA::Policy_ptr get_cached_policy (TAO_Cached_Policy_Type type);
// = The CORBA::PolicyManager operations
virtual CORBA::PolicyList * get_policy_overrides (
const CORBA::PolicyTypeSeq & ts);
virtual void set_policy_overrides (
const CORBA::PolicyList & policies,
CORBA::SetOverrideType set_add);
// = Set and get the implementation.
TAO_Policy_Current_Impl &implementation (void) const;
TAO_Policy_Current_Impl &implementation (TAO_Policy_Current_Impl &);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/Policy_Current.inl"
#endif /* __ACE_INLINE__ */
#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
#include /**/ "ace/post.h"
#endif /* TAO_POLICY_CURRENT_H */
|