C++ TargetRTS
Loading...
Searching...
No Matches
RTUnknownObject.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 __RTUnknownObject_h__
11#define __RTUnknownObject_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTObject_class_h__
18#include <RTObject_class.h>
19#endif
20
21#if OBJECT_DECODE
22
24{
25 char * signature; // name of decoding class
26 int length;
27 char * code;
28
29 static const RTObject_class classData;
30
31#define RTType_RTUnknownObject ( RTUnknownObject::classData )
32};
33
34#endif // OBJECT_DECODE
35
36#endif // __RTUnknownObject_h__
A type descriptor providing information about a type.
Definition: RTObject_class.h:64
Definition: RTUnknownObject.h:24