home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Graph.h
-
- Author: Bruce Kritt
-
- Description:
- */
-
- class Graph
- {
- private:
- // attributes
-
- VertexTree main_vertex_tree;
- String* prime_vertex;
-
- // helper functions
-
- Vertex* operator()(String name){return Find(name,main_vertex_tree);}
- public:
- // constructor
-
- Graph(void);
-
- // destructor
-
- ~Graph();
-
- // public services
-
- StringQueue GetActiveVertices(void);
- void GenerateMakefile(void);
-
- }; // end class Graph
-