C++ TargetRTS
Loading...
Searching...
No Matches
RTLayerData.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 __RTLayerData_h__
11#define __RTLayerData_h__ included
12
13#ifdef PRAGMA
14#pragma interface
15#endif
16
17#ifndef __RTConfig_h__
18#include <RTConfig.h>
19#endif
20
21class RTController;
22
24{
25public:
26 RTS_INLINE RTLayerData( void );
27 virtual ~RTLayerData( void );
28
29 virtual const char * getRegisteredName( void ) const = 0;
30
31 virtual void resize( RTController * context, int old_size ) = 0;
32
33 virtual void deregister( RTController * context ) = 0;
34};
35
36#if RTS_INLINES
37#include <RTLayerData.inl>
38#endif
39
40#endif // __RTLayerData_h__
A controller manages a group of capsule instances that all run in the same physical thread (i....
Definition: RTController.h:54
Definition: RTLayerData.h:24