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

        Final Project                                 MMU 1996

        ######################################################
        #                                                    #
        #   A Momolithic Backpropagation Neural Network      #   
        #                                                    #
        ######################################################

        Albrecht Schmidt                              17.09.96

        FILE: bpnet.C                               Version 1.0

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

#include "neuro.h"

int main()
{
        TAction res;  // a variable for the selected action 
        CBPUserIF aUI;  // an instance of the user interface
        do
        { 

                res = aUI.Menu(); // get the users choise
                aUI.Handle(res);  // do it

        }
        while (TRUE); // exit is handled in the procedure Handle(..)

}

