/****************************************************************************
     
     TITLE: CPP2HTM Builder 1.0

     PURPOSE: This program is capable of converting
             C or C++ source code into valid HTML web
             document source code. The user will specify
             the path of a C or C++ source file and will
             specify a path destination for the HTML file, 
             which will ultimately contain all code in the 
             source file and possibly other HTML markup for 
             a specified visual appearance. The C or C++ 
             source file will not be changed, and the 
             HTML destination file will be a valid HTML 
             document capable for publishing on the WWW. 

             If web page customization is needed, the
             builder has a configuration tool which can 
             enhance the following properties: browser
             title bar text, background color, text color, 
             web page title text, text font type and size, 
             internal source tab size, and option of 
             displaying line numbers. If no customization is 
             needed, default values for these properties will be 
             used. 

             The user is able to build as many CPP2HTM 
             documents as needed during any program session.
             The HTML build produces valid HTML 4.0 
             Transitional coding schemes defined by W3C.org's
             standards. 

          INPUT: C or C++ source file
          OUPUT: HTML or HTM web document

     PROGRAMMER: Mike Ware
     DATE LAST UPDATED: 2/2/04

     For more source code and tutorials, visit: http://warebizprogramming.com

***************************************************************************/

#include "builderspec.h"     // include header file and auxiliary file

int main()
{
     HtmBuilder builderOp;

     builderOp.run();          // initialize program run menu

     return EXIT_SUCCESS;
}


Rendered using: CPP2HTM Builder 1.0 -- http://warebizprogramming.com/