Added makefile to project; Removed error in code;
[povnn.git] / settableneuralinput.cpp
blob39b789101c2093d16426a03617a3c6e87ecbcc98
1 #include "settableneuralinput.h"
3 SettableNeuralInput::SettableNeuralInput(double newValue ,NeuralInput *parent)
4 : NeuralInput(parent), value(newValue)
8 double SettableNeuralInput::getValue()
10 return this->value;