C++ TargetRTS
Loading...
Searching...
No Matches
RTArray_class.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 __RTArray_class_h__
11#define __RTArray_class_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTFieldDescriptor_h__
18#include <RTFieldDescriptor.h>
19#endif
20
21#ifndef __RTObject_class_h__
22#include <RTObject_class.h>
23#endif
24
26{
27 RTFieldDescriptor element;
28
29 RTArray_class( int size, const RTObject_class * element_type );
30// ~RTArray_class( void );
31}; //lint !e1712
32
33#endif // __RTArray_class_h__
Definition: RTArray_class.h:26
Definition: RTFieldDescriptor.h:40
A type descriptor providing information about a type.
Definition: RTObject_class.h:64