/usr/include/tao/Null_Fragmentation_Strategy.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 | // -*- C++ -*-
//=============================================================================
/**
* @file Null_Fragmentation_Strategy.h
*
* $Id: Null_Fragmentation_Strategy.h 76687 2007-01-29 19:18:13Z johnnyw $
*
* @author Ossama Othman <ossama@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_NULL_FRAGMENTATION_STRATEGY_H
#define TAO_NULL_FRAGMENTATION_STRATEGY_H
#include /**/ "ace/pre.h"
#include "tao/GIOP_Fragmentation_Strategy.h"
#include "ace/CDR_Base.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_OutputCDR;
/**
* @class TAO_Null_Fragmenation_Strategy
*
* @brief Null GIOP message fragmentation strategy.
*
* No-op GIOP message fragmentation strategy. This strategy performs
* no GIOP fragmentation.
*
* @see TAO_GIOP_Fragmentation_Strategy
*/
class TAO_Null_Fragmentation_Strategy
: public TAO_GIOP_Fragmentation_Strategy
{
public:
TAO_Null_Fragmentation_Strategy (void) {}
virtual ~TAO_Null_Fragmentation_Strategy (void);
virtual int fragment (TAO_OutputCDR &, ACE_CDR::ULong, ACE_CDR::ULong);
private:
// Disallow copying and assignment.
TAO_Null_Fragmentation_Strategy (TAO_Null_Fragmentation_Strategy const &);
void operator= (TAO_Null_Fragmentation_Strategy const &);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_NULL_FRAGMENTATION_STRATEGY_H */
|