Added makefile to project; Removed error in code;
[povnn.git] / settableneuralinput.h
blob5b0ac548a595801a43163e068e08e81f44fb7c6e
1 #ifndef SETTABLENEURALINPUT_H
2 #define SETTABLENEURALINPUT_H
4 #include <QObject>
5 #include "neuralnetwork.h"
6 #include "neuralinput.h"
8 class SettableNeuralInput : public NeuralInput
10 Q_OBJECT
12 private:
13 double value;
15 public:
16 SettableNeuralInput(double newValue = 0, NeuralInput *parent = 0);
17 double getValue();
18 void setCorrectValue(double value) {UNUSED(value)};
19 void setValue(double newValue);
22 #endif // SETTABLENEURALINPUT_H