NNetCpp
Neural network implementation in C++
 All Classes Namespaces Functions Variables
Node.h
1 #ifndef NODE_H
2 #define NODE_H
3 
7 class Node {
8  public:
14  virtual double getOutput() = 0;
15 };
16 
17 #endif // NODE_H
virtual double getOutput()=0
Definition: Node.h:7