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

        Final Project                                 MMU 1996

        ######################################################
        #                                                    #
        #               A Modular Neural Network             #   
        #                                                    #
        #              The global include file               #   
        #                                                    #
        ######################################################

        Albrecht Schmidt                              17.09.96

        FILE: neuro.h                              Version 1.0

   ************************************************************* */
#ifndef _neuro_h
#define _neuro_h

#include "global.h"

#include "CData.h"
#include "CEncode.h"
#include "CSupport.h"

#include "CCell.h"
#include "CLayer.h"
#include "CBackPro.h"
#include "CBPUI.h"

#include "CMLayer.h"
#include "CMul2L.h"
#include "CUserIF.h"

#include "CDiscrim.h"
#include "CRam.h"
#include "CRamNet.h"
#include "CRamUI.h"

#endif
