C++ TargetRTS
Loading...
Searching...
No Matches
RTSequence.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 __RTSequence_h__
11#define __RTSequence_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTDataObject_h__
18#include <RTDataObject.h>
19#endif
20
22{
23public:
24 RTSequence( void );
25 RTSequence( const RTSequence & );
26 virtual ~RTSequence( void );
27
28 RTSequence & operator=( const RTSequence & );
29
30 virtual const RTObject_class * getClassData( void ) const override;
31 static const RTObject_class classData;
32
33#define RTType_RTSequence ( RTSequence::classData )
34};
35
37{
38 const void * data;
39 const RTObject_class * type;
40
41 RTS_INLINE RTTypedValue_RTSequence( const RTSequence & ); //lint !e1931
42 RTS_INLINE RTTypedValue_RTSequence( const RTSequence &,
43 const RTObject_class * );
44}; //lint !e1712
45
46#if RTS_INLINES
47#include <RTSequence.inl>
48#endif
49
50#endif // __RTSequence_h__
Provides a common interface to certain data type implementations (e.g.
Definition: RTDataObject.h:33
Definition: RTSequence.h:22
A type descriptor providing information about a type.
Definition: RTObject_class.h:64
Definition: RTSequence.h:37