Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
insideoutgraphsorter.h
1 #ifndef INSIDEOUTGRAPHSORTER_H
2 #define INSIDEOUTGRAPHSORTER_H
3 
4 #include <QObject>
5 #include "graphsorter.h"
6 
12 {
13  Q_OBJECT
14  Q_INTERFACES(INamedObject)
15 
16 public:
17  InsideOutGraphSorter(QObject *parent);
19 
23  QString GetName() { return "InsideOut"; }
24 
25 private:
26  void orderLayers(DataSet& data);
27 };
28 
29 #endif // INSIDEOUTGRAPHSORTER_H
The data set.
Definition: dataset.h:85
Derived classes provide sorting functionality for the graph layers, usign different algorithms...
Definition: graphsorter.h:10
Class describes a sorting algorithm which sorts the DataSet in order to put the first elements of the...
Definition: insideoutgraphsorter.h:11
QString GetName()
Gets the name of the algorithm to display in the GUI.
Definition: insideoutgraphsorter.h:23
Interface for objects which have a name.
Definition: namedobject.h:9