CPP2HTM Builder Main Source File
/****************************************************************************
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 manipulated, 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: 11/18/03
For programs and tutorials, visit: http://warebiz.tripod.com/
***************************************************************************/
#include "builderspec.h"
int main()
{
HtmBuilder builderOp; // class instantiation
builderOp.run(); // call main program routine
return EXIT_SUCCESS;
}// end main() definition
Rendered using: CPP2HTM Builder -- http://warebiz.tripod.com/