Pointwise Plugin SDK
rtGrdpInstanceData.h
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * GrdpXxxxx runtime custom data
4  *
5  * (C) 2021 Cadence Design Systems, Inc. All rights reserved worldwide.
6  *
7  ***************************************************************************/
8 
9 #ifndef _RTGRDPINSTANCEDATA_H_
10 #define _RTGRDPINSTANCEDATA_H_
11 
12 /*----------------------------------------------------------------------
13  NOT NEEDED FOR C++ PLUGINS
14 ----------------------------------------------------------------------*/
15 
16 // Forward declare the struct so it can be used as a ptr below. The concrete
17 // struct can be defined in runtimeReadGrid.cxx for single module use or
18 // a project header file if it is needed in multiple source modules.
19 struct MY_GRDP_DATA;
20 
21 // This macro is included in the GRDP_RTITEM structure declaration:
22 #define GRDP_RUNTIME_INSTDATADECL MY_GRDP_DATA* data;
23 
24 
25 
26 
27 /************************************************************************/
77 #endif /* _RTGRDPINSTANCEDATA_H_ */