flow.h
Go to the documentation of this file.
1 #ifndef DNAI_MODELS_GUI_DATA_FLOW_H
2 #define DNAI_MODELS_GUI_DATA_FLOW_H
3 
5 
6 namespace dnai
7 {
8  namespace models
9  {
10  namespace gui
11  {
12  namespace data
13  {
14  struct Flow : Linkable
15  {
16  Flow &operator=(const Flow &link) = default;
17  bool operator!=(const Flow &link) const
18  {
19  return !(*this == link);
20  }
21  bool operator==(const Flow &link) const
22  {
23  return Linkable::operator==(link);
24  }
25  };
26  }
27  }
28  }
29 }
30 
31 #endif //DNAI_MODELS_GUI_DATA_FLOW_H
bool operator==(const Linkable &link) const
Definition: linkable.h:26
bool operator!=(const Flow &link) const
Definition: flow.h:17
Flow & operator=(const Flow &link)=default
Definition: api.h:13
Definition: flow.h:14
Definition: linkable.h:14
bool operator==(const Flow &link) const
Definition: flow.h:21