DISPLACE  1.0
A spatial model of fisheries to help sustainable fishing and maritime spatial planning
isolatedsubgraphchecker.h
Go to the documentation of this file.
1 #ifndef ISOLATEDSUBGRAPHCHECKER_H
2 #define ISOLATEDSUBGRAPHCHECKER_H
3 
4 #include <memory>
5 
6 #include <QVector>
7 
8 class DisplaceModel;
9 
11 {
12 public:
15 
16  bool process();
17 
18  QList<int> getIsolatedNodes() const {
19  return mIsolatedNodes;
20  }
21 
22 private:
23 
24  DisplaceModel *mModel;
25  QList <int> mIsolatedNodes;
26 };
27 
28 #endif // ISOLATEDSUBGRAPHCHECKER_H
Definition: isolatedsubgraphchecker.h:10
Definition: displacemodel.h:71
~IsolatedSubgraphChecker()
Definition: isolatedsubgraphchecker.cpp:64
IsolatedSubgraphChecker(DisplaceModel *model)
Definition: isolatedsubgraphchecker.cpp:58
QList< int > getIsolatedNodes() const
Definition: isolatedsubgraphchecker.h:18
bool process()
Definition: isolatedsubgraphchecker.cpp:69