23 #ifndef NEURALNETITERATOR_H 
   24 #define NEURALNETITERATOR_H 
   26 #include "neuroninterfaces.h" 
   27 #include "neuralnet.h" 
   44     void setNeuralNet( farsa::NeuralNet* neuralnet );
 
   51     bool setCurrentBlock( QString blockName );
 
   59     void setInput( 
double value );
 
   70     void setGraphicProperties( QString label, 
double minValue, 
double maxValue, QColor color );
 
   77     void checkCurrentStatus( 
const QString& funcName = QString() ) 
const;
 
   79     farsa::NeuralNet* neuralnet;
 
   81     farsa::Cluster* cluster;
 
This class iterate over the neurons of a NNFW neural network. 
 
The base abstract class for iterating over neurons of a neural network.