text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

Edge.h

Go to the documentation of this file.
00001 
00019 class Edge
00020 {
00021 public:
00022    int v, w, weight;
00023    Edge(int firstVertex, int secondVertex, int edgeWeight)
00024    {
00025       v = firstVertex;
00026       w = secondVertex;
00027       weight = edgeWeight;
00028    }  // end constructor
00029 }; // end Edge
00030 // End of header file

Generated on Sun Aug 27 22:27:07 2006 for AWLogo by  doxygen 1.4.6