| home | contents | previous | next page | send comment | send link | add bookmark |

Source Files

This application was developed using the GNU g++ compiler. The following source files contains all the developmental code for the application:

    scalc.cpp           scalc.h 
    textview.cpp        textview.h
    calculator.cpp      calculator.h 
    document.cpp        document.h

The following text included in a file titled "Makefile" can be used to build SCalc from the source code listed above.

scalc : scalc.cpp scalc.h textview.cpp textview.h \
        calculator.cpp calculator.h document.cpp document.h
        g++ -lcurses -o scalc scalc.cpp textview.cpp \
                calculator.cpp document.cpp
Note that the GNU compiler g++ is used here.

You may use or modify these files in any way you find useful, provided that you agree that the author has no warranty, obligations or liability. You must determine the suitablility of this source code for your use.


| home | contents | previous | next page | send comment | send link | add bookmark |

Copyright © 2004, Stephen R. Schmitt