Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. template <class T>
  2. class WeightedGraph {
  3. public:
  4. friend std::ostream& operator<<(std::ostream& out,
  5. const WeightedGraph<T>& g);
  6. ...
  7. };
  8.  
  9.  
  10. template <class T>
  11. std::ostream& operator<<(std::ostream& out, const WeightedGraph<T>& g) {
  12. ...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement