blob: 528b1a2871498a737d89b708f909bef0544ea9d3 (
plain)
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Null_Fragmentation_Strategy.h
*
* @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 */
|