C++ TargetRTS
Loading...
Searching...
No Matches
RTPrefix.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 __RTPrefix_h__
11#define __RTPrefix_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
22{
23 const RTPrefix * prefix;
24 int compId;
25 int index;
26
27 RTS_INLINE explicit RTPrefix( const RTPrefix * );
28}; //lint !e1712
29
30#if RTS_INLINES
31#include <RTPrefix.inl>
32#endif
33
34#endif // __RTPrefix_h__
Definition: RTPrefix.h:22