www.pudn.com > XiaoYuanDaoYouTu.rar > Graphm.h


#include "Graph.h" 
#include "Edge.h"	// Added by ClassView 
 
class Graphm : public Graph   
{ 
public: 
	void delEdge(int from,int to); 
	void setEdge(int from,int to,int weight); 
	Edge NextEdge(Edge preEdge); 
	Edge FirstEdge(int oneVertex); 
	Graphm(int); 
	virtual ~Graphm(); 
 
private: 
	int ** matrix; 
};