Files
Sourcetrail/src/lib/component/controller/GraphLayouter.h
T
Eberhard Graether 810ed7c064 build: fixed errors in clang
* removed const m_dimensions in VectorBase and replaced it with N
* changed signature of DummyNode::operator=
* fixed warning for DummyNode wrongly declared as class
2014-07-16 11:54:16 +02:00

17 lines
333 B
C++

#ifndef GRAPH_LAYOUTER_H
#define GRAPH_LAYOUTER_H
#include <vector>
struct DummyNode;
typedef void (*LayoutFunction)(std::vector<DummyNode>&);
class GraphLayouter
{
public:
static void layoutSimpleRaster(std::vector<DummyNode>& nodes);
static void layoutSimpleRing(std::vector<DummyNode>& nodes);
};
#endif // GRAPH_LAYOUTER_H