INtime C++ Support

INtime includes full C++ support in its runtime environment, including the Standard Template Library or STL.
When using C++, you can write your own classes; in addition, INtime provides a class framework that has the same structure as the MFC framework (although, naturally, the user interface classes are not present in INtime).
For example, the class CIThread implements a generic thread, with functions like InitInstance, DoForever and ExitInstance. The derived class CIDataMbxThread provides overruled functions that creates a data mailbox and catalogs it, waits for incoming messages and, at thread end, deletes the mailbox and uncatalogs it; and it provides a new OnReceive function.