Using Simkin with your C++ application


Simkin for C++ is distributed in source code format. It has been written in C++ using templates.

Typically you build Simkin into a library to link with your application.

We supply some example project files which build a static library.

in all cases, you will have to add the correct include and libraries for your Xerces-C distribution.

Simkin source files and classes are all prefixed with "sk" to prevent name clashes with classes in your own application.

The classes within Simkin that interact with XML use the Xerces-C library from the Apache Foundation.

This library is *not* included in the Simkin distribution, it can be obtained from http://xml.apache.org/xerces-c

The classes (skXMLElementObject and skXMLExecutable) can be reimplemented to use a different XML library, without affecting the rest of the interpreter, which does not itself require any XML libraries.

Notes: