template class Edge{ public: //get methods... private: V source; V destination; E label; W weight; } template class AdjacencyListGraph{ public: //graph methods... private: HashTable< V, Hashtable< V, Edge > > ; }