C++ TargetRTS
Loading...
Searching...
No Matches
RTVAsciiEncoding.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 __RTVAsciiEncoding_h__
11#define __RTVAsciiEncoding_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTAsciiEncoding_h__
18#include <RTAsciiEncoding.h>
19#endif
20
21#if OBJECT_ENCODE
22
24{
25public:
26 explicit RTVAsciiEncoding( RTOBuffer * );
27 virtual ~RTVAsciiEncoding( void );
28
29protected:
30 virtual int putType( const RTObject_class * ) override;
31
32private:
33 // unavailable methods
35 RTVAsciiEncoding & operator=( const RTVAsciiEncoding & );
36}; //lint !e1712
37
38#endif // OBJECT_ENCODE
39
40#endif // __RTVAsciiEncoding_h__
The default encoding implementation that is used for all default type descriptors.
Definition: RTAsciiEncoding.h:34
Represents an output buffer.
Definition: RTOBuffer.h:23
Definition: RTVAsciiEncoding.h:24
A type descriptor providing information about a type.
Definition: RTObject_class.h:64