summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Naming/Graph.h
blob: 2c3adbd9a4a078ac9d450134d8ccc2d93b5bf005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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 */