aboutsummaryrefslogtreecommitdiff
path: root/Node.h
blob: 70a580c8bbdfc66d1acb4d4a08c07bbe4219431b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
#include <string>
#include <vector>

#include "Observer.h"
#include "Net.h"



class Node: Observer {
   private:
      std::string label;
      std::string type;

      std::vector<Net*> inputs;
      std::vector<Net*> outputs;

   public:
      Node(/* args */);
      ~Node();
      virtual void addInput(Net*);
      virtual void addOutput(Net*);
};