/usr/include/tao/ZIOP_Adapter.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 | // -*- C++ -*-
//=============================================================================
/**
* @file ZIOP_Adapter.h
*
* $Id: ZIOP_Adapter.h 84717 2009-03-05 07:41:07Z msmit $
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*/
//=============================================================================
#ifndef TAO_ZIOP_ADAPTER_H
#define TAO_ZIOP_ADAPTER_H
#include /**/ "ace/pre.h"
#include "ace/Service_Object.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/TAO_Export.h"
#include "tao/orbconf.h"
#include "tao/TAO_Server_Request.h"
#include "tao/Profile_Transport_Resolver.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Policy_Validator;
class TAO_Queued_Data;
/**
* @class TAO_ZIOP_Adapter
*
* @brief TAO_ZIOP_Adapter
*
* Class that offers an interface to the ORB to load and manipulate
* ZIOP library.
*/
class TAO_Export TAO_ZIOP_Adapter : public ACE_Service_Object
{
public:
virtual bool decompress (ACE_Data_Block **db, TAO_Queued_Data& qd, TAO_ORB_Core& orb_core) = 0;
virtual bool marshal_data (TAO_OutputCDR& cdr, TAO_Stub& stub) = 0;
virtual bool marshal_data (TAO_OutputCDR& cdr, TAO_ORB_Core& orb_core) = 0;
virtual void load_policy_validators (TAO_Policy_Validator &validator) = 0;
/// The virtual destructor
virtual ~TAO_ZIOP_Adapter (void);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_ZIOP_ADAPTER_H */
|