Tervelox Rapid Development Tool

The Tervelox Rapid Development Tool is designed to generate a C++ source code framework for SDK development.  Below is a screenshot of the product and the quickstart guide on how to use it.  The product is not designed to be a UML source code generator, but a tool for C++ programmers that want to generate an SDK framework quickly.  If you have any feedback for us on this product, we would like to hear from you.

Product Screen Shot



Step One - Select New Class



Step Two - Add Members



Step Three - Add Parameters



Step Four - Arrange Classes, Use Mouse For Inheritance

Step Five - Move Into Your Compiler And Complete Algorithms

This example comes from the Finance class shown in the initial screen shot for the Degree of Operating Leverage (DOL) member.  The final addition is highlighted in red.

void Finance::DOL(double in_ChangeOperatingIncome, double in_ChangeSales, double &out_DOL) {

  out_DOL = in_ChangeOperatingIncome / in_ChangeSales;

}

HOME