TIBCO Adapter SDK C++ Reference
MPlugin::MPlugin
MPlugin
Create a named MPlugin object. You cannot call this constructor directly. Instead, call it from a subclass of MPlugin.
Remarks
The SDK invokes the MPlugin constructor in the early stage of starting the adapter. You should therefore implement a constructor with relatively little behavior. Most of the initialization work should instead be done in the onInitialization() method because the configuration properties are available when the SDK invokes that method.

The subclass constructor must call MPlugin superclass constructor with a name matching the one in the adapter instance.

    Plugin 
   Name = NativeUserExitImplPlugin
Parameters
Parameters Description
MApp* pMApp Pointer to the MApp for which you want to create this MPlugin.
const MString& rsPluginName Name of this plugin object.
Declaration
MPlugin(MApp* pMApp, const MString& rsPluginName);
Links
Copyright (c) 2010 TIBCO Software Inc. All rights reserved.