00001 00002 // Name: netio.cpp 00003 // Purpose: net file loading and saving code 00004 // Author: Chad Rempp 00005 // Modified by: Chad Rempp 00006 // Created: 06-12-03 00007 // Copyright: (c) 2003 Chad Rempp 00008 // Licence: GNU Public License (hey it's what all my friends are doing) 00010 00011 #include <wx/textfile.h> 00012 00013 void ParseFile(wxTextFile *file) 00014 { 00015 int input, output, h_layers, n_per_layer, size, type; 00016 00017 ngui_frame->Log("Test"); 00018 00019 Net net(input, output, h_layers, n_per_layer); 00020 }