Pointwise Plugin SDK
|
The abstract structured plugin base class. More...
Typedefs | |
typedef CaePlugin< CaeStrGridModel > | CaeStrPlugin |
The abstract structured plugin base class.
This abstract base class is subclassed by user defined structured plugins.
typedef CaePlugin<CaeStrGridModel> CaeStrPlugin |
The base class for plugins that export a structured grid model.
The -cpp
option to the mkplugin
script creates a C++ plugin project. This project will declare a properly subclassed plugin object in the PluginName.h and PluginName.cxx source files. At export, this subclass is instantiated in the runtimeWrite()
function.
The following snippets are extracted from the CaeStrXMLCPP sample plugin.
mkplugin -str -cpp XMLCPP generates:
In .../src/plugins/CaeStrXMLCPP/CaeStrXMLCPP.h
:
In .../src/plugins/CaeStrXMLCPP/runtimeWrite.cxx
:
Definition at line 1207 of file CaePlugin.h.