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

        Final Project                                 MMU 1996

        ###################################################### 
        #                                                    # 
        #      A    M O D U L A R     Neural    Network      #
        #                                                    # 
        ###################################################### 
 
        Albrecht Schmidt                              17.09.96 
 
        FILE: modnet.C                             Version 1.0 
 
   ************************************************************* */ 
#include "neuro.h"

int main()
{
        TAction res;  // a variable for the selected action 
        CUserIF 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(..)

}

