Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
weightedgraphsorter.h
1 #ifndef WEIGHTEDGRAPHSORTER_H
2 #define WEIGHTEDGRAPHSORTER_H
3 
4 #include <QObject>
5 #include "graphsorter.h"
6 
12 {
13  Q_OBJECT
14  Q_INTERFACES(INamedObject)
15 
16 public:
17  WeightedGraphSorter(QObject *parent);
19 
20  QString GetName() { return "Weighted"; }
21 
22 private:
23  void orderLayers(DataSet& data);
24 };
25 
26 #endif // WEIGHTEDGRAPHSORTER_H
The data set.
Definition: dataset.h:85
QString GetName()
Returns a user-presentable name for the object.
Definition: weightedgraphsorter.h:20
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: weightedgraphsorter.h:11
Interface for objects which have a name.
Definition: namedobject.h:9