C++ TargetRTS
Loading...
Searching...
No Matches
RTMemoryInBuffer.h
1/*
2 * Licensed Materials - Property of HCL and/or IBM
3 * Copyright HCL Technologies Ltd. 2016, 2021. All Rights Reserved.
4 * Copyright IBM Corporation 1999, 2016. All Rights Reserved.
5 *
6 * U.S. Government Users Restricted Rights - Use, duplication or
7 * disclosure restricted by GSA ADP Schedule.
8 */
9
10#ifndef __RTMemoryInBuffer_h__
11#define __RTMemoryInBuffer_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTIBuffer_h__
18#include <RTIBuffer.h>
19#endif
20
22{
23public:
24 RTMemoryInBuffer( const char *, int size );
25 virtual ~RTMemoryInBuffer( void );
26
27 virtual int get( char & ) override;
28
29private:
30 const char * memory;
31 int size;
32
33private:
34 // unavailable methods
36 RTMemoryInBuffer & operator=( const RTMemoryInBuffer & );
37}; //lint !e1712
38
39#endif // __RTMemoryInBuffer_h__
Definition: RTIBuffer.h:22
Definition: RTMemoryInBuffer.h:22