summaryrefslogtreecommitdiff
path: root/examples/APG/Naming/Graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Naming/Graph.h')
-rw-r--r--examples/APG/Naming/Graph.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/APG/Naming/Graph.h b/examples/APG/Naming/Graph.h
new file mode 100644
index 00000000000..135b7d14f77
--- /dev/null
+++ b/examples/APG/Naming/Graph.h
@@ -0,0 +1,18 @@
+// $Id$
+
+#ifndef GRAPH_H
+#define GRAPH_H
+
+#include "Graphable_Element.h"
+
+class Graph
+ {
+ public:
+ Graph()
+ {
+ }
+
+ void graph( char * filename, Graphable_Element_List & data );
+ };
+
+#endif /* GRAPH_H */