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