C++ TargetRTS
Loading...
Searching...
No Matches
RTVAsciiDecoding.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 __RTVAsciiDecoding_h__
11#define __RTVAsciiDecoding_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTAsciiDecoding_h__
18#include <RTAsciiDecoding.h>
19#endif
20
21#if OBJECT_DECODE
22
24{
25public:
26 explicit RTVAsciiDecoding( RTIBuffer * );
27 virtual ~RTVAsciiDecoding( void );
28
29 virtual int get( void **, const RTObject_class ** ) override;
30
31private:
32 // unavailable methods
34 RTVAsciiDecoding & operator=( const RTVAsciiDecoding & );
35}; //lint !e1712
36
37#endif // OBJECT_DECODE
38
39#endif // __RTVAsciiDecoding_h__
The default decoding implementation that is used for all default type descriptors.
Definition: RTAsciiDecoding.h:32
Definition: RTIBuffer.h:22
Definition: RTVAsciiDecoding.h:24
A type descriptor providing information about a type.
Definition: RTObject_class.h:64