QGVGraphPrivate.h
Go to the documentation of this file.
1 #ifndef QGVGRAPHPRIVATE_H
2 #define QGVGRAPHPRIVATE_H
3 
4 #include <cgraph.h>
5 
7  public:
8  QGVGraphPrivate(Agraph_t* graph = NULL);
9 
10  void setGraph(Agraph_t* graph);
11  Agraph_t* graph() const;
12 
13  private:
14  Agraph_t* _graph;
15 };
16 
17 #endif // QGVGRAPHPRIVATE_H
Agraph_t * graph() const
Definition: QGVGraphPrivate.cpp:12
void setGraph(Agraph_t *graph)
Definition: QGVGraphPrivate.cpp:7
Definition: QGVGraphPrivate.h:6
QGVGraphPrivate(Agraph_t *graph=NULL)
Definition: QGVGraphPrivate.cpp:3