Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object

1. Create a PLC and append a new function block there.
This Proxy function block should provide the functionality that was programmed in C++. It is able to do this via an interface pointer that was defined from the C++ class and is known in the PLC due to the TMC description file.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 1:
2. In the declaration part of the function block declare as an output an interface pointer to the interface which later provides the functionality outward.
3. Create the object ID and the interface ID as local member variables.
While the interface ID is already available via a global list, the object ID is allocated via the TwinCAT symbol initialization. The TcInitSymbol attribute ensures that the variable appears in a list for external symbol initialization. The object ID of the created C++ object should be allocated.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 2:
The object ID is displayed upon selection of the object under the TcCOM Objects node.
Provided the TcInitSymbol attribute was used, the list of symbol initializations is located in the node of the PLC instance in the Symbol Initialization tab.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 3:
4. Here, assign an existing object ID to the symbol name of the variable by drop-down. This value is assigned when the PLC is downloaded so it can be defined prior to the PLC run-time. New symbol initializations or changes are accordingly entered with a new download of the PLC.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 4:As an alternative, the passing of the object ID could also be implemented by means of process image linking as implemented in the first sample (TcCOM_Sample01_PlcToPlc).
5. Implement the PLC Proxy function block.
First the FB_init constructor method is added to the function block. For the case that it is no longer an OnlineChange but rather the initialization of the function block, the interface pointer to the specified interface of the specified TcCOM object is obtained with the help of the function FW_ObjMgr_GetObjectInstance(). In this connection the object itself increments a reference counter.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 5:
6. It is imperative to release the used reference again. To this end call the FW_SafeRelease() function in the FB_exit destructor of the function block.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 6:
This completes the implementation of the Proxy function block.
7. Declare an instance of the Proxy function block to call the methods provided via the interface in the application.
The calls themselves take all place over the interface pointer defined as output of the function block. As is typical for pointers a prior null check must be made. Then the methods can be called directly, also via Intellisense.
Creating an FB in the PLC that, as a simple proxy, offers the functionality of the C++ object 7:
The sample is ready for testing.