/usr/include/tao/Fault_Tolerance_Service.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 Fault_Tolerance_Service.h
*
* $Id: Fault_Tolerance_Service.h 92070 2010-09-28 12:15:24Z johnnyw $
*
* A collection of the ORB and ORB core related properties that are
* specific to FT service. The TAO_ORB_Core holds an instance of this
* class.
*
*
* @author Bala Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_FAULT_TOLERANCE_SERVICE_H
#define TAO_FAULT_TOLERANCE_SERVICE_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/Basic_Types.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Service_Callbacks;
class TAO_ORB_Core;
/**
* @class TAO_Fault_Tolerance_Service
*
* @brief TAO_Fault_Tolerant_Service
*
* A class that holds an FT service call back instance.
*/
class TAO_Export TAO_Fault_Tolerance_Service
{
public:
/// Ctor
TAO_Fault_Tolerance_Service (void);
/// Dtor
~TAO_Fault_Tolerance_Service (void);
/// Initialize the internal data structures
void init (TAO_ORB_Core *orb_core);
/// Return the underlying callback object
TAO_Service_Callbacks *service_callback (void);
private:
void operator= (const TAO_Fault_Tolerance_Service &);
TAO_Fault_Tolerance_Service (const TAO_Fault_Tolerance_Service &);
private:
/// hook to callback on to the service
TAO_Service_Callbacks *ft_service_callback_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/Fault_Tolerance_Service.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /*TAO_FAULT_TOLERANCE_SERVICE_H*/
|