/usr/include/tao/Refcounted_ObjectKey.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 76 77 78 79 | // -*- C++ -*-
//=============================================================================
/**
* @file Refcounted_ObjectKey.h
*
* $Id: Refcounted_ObjectKey.h 74014 2006-08-14 13:52:22Z johnnyw $
*
* @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_REFCOUNTED_OBJECTKEY_H
#define TAO_REFCOUNTED_OBJECTKEY_H
#include /**/ "ace/pre.h"
#include /**/ "tao/TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Object_KeyC.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
/**
* @class Refcounted_ObjectKey
*
* @brief A wrapper class that ties together a refcount to an
* ObjectKey.
*
* The refcount in this class is manipulated within the context of
* the lock in the TAO::ObjectKey_Table. Manipulating the refcount
* from anywhere else is strictly forbidden.
*/
class TAO_Export Refcounted_ObjectKey
{
public:
/// Constructor
Refcounted_ObjectKey (const ObjectKey &ref);
/// Accessor for the underlying ObjectKey.
const ObjectKey &object_key (void) const;
protected:
friend class ObjectKey_Table;
/// Protected destructor
~Refcounted_ObjectKey (void);
/// Methods for incrementing refcount.
void incr_refcount (void);
/// Methods for decrementing refcount. Return the refcount, used by the
/// ObjectKey table.
CORBA::ULong decr_refcount (void);
private:
/// The object key
ObjectKey object_key_;
/// The refcount on the object key..
CORBA::ULong ref_count_;
};
}
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "tao/Refcounted_ObjectKey.inl"
#endif /* defined INLINE */
#include /**/ "ace/post.h"
#endif /*TAO_REFCOUNTED_OBJECTKEY_H*/
|