Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
ontopgraphsorter.h
1 #ifndef ONTOPGRAPHSORTER_H
2 #define ONTOPGRAPHSORTER_H
3 
4 #include <QObject>
5 #include "graphsorter.h"
6 
11 {
12  Q_OBJECT
13  Q_INTERFACES(INamedObject)
14 
15 public:
16  OnTopGraphSorter(QObject *parent);
18 
19  QString GetName() { return "OnTop"; }
20 
21 private:
22  void orderLayers(DataSet& data);
23 };
24 
25 #endif // ONTOPGRAPHSORTER_H
QString GetName()
Returns a user-presentable name for the object.
Definition: ontopgraphsorter.h:19
The data set.
Definition: dataset.h:85
Class describes a naive sorting algorithm which sorts the DataSet by simply stacking the elements ont...
Definition: ontopgraphsorter.h:10
Derived classes provide sorting functionality for the graph layers, usign different algorithms...
Definition: graphsorter.h:10
Interface for objects which have a name.
Definition: namedobject.h:9