From 458eab5e991e13943a08e592de39dae372208617 Mon Sep 17 00:00:00 2001 From: blacklight Date: Sun, 16 Aug 2009 18:05:35 +0200 Subject: [PATCH] No more using namespace std --- src/neuralnet.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/neuralnet.cpp b/src/neuralnet.cpp index faa72fe..2cd70e4 100644 --- a/src/neuralnet.cpp +++ b/src/neuralnet.cpp @@ -11,15 +11,18 @@ * this program. If not, see . * **************************************************************************************************/ -#include #include #include -using namespace std; - #include "neural++.hpp" #include "Markup.h" +using std::vector; +using std::string; +using std::ifstream; +using std::ofstream; +using std::stringstream; + namespace neuralpp { double __actv(double prop) { return prop;