Hey everyone!
I'm hoping someone can point out what I'm doing wrong, I'm completely stuck. I'm making a minimal spanning tree class that inherits a graph class, both are templated.
This is my mstree.h so far:
namespace MSTreeNameSpace
{
using GraphNameSpace::Graph ;
// ...
Or (best)
1 2 3 4
namespace MSTreeNameSpace
{
template <class T>
class MSTREE : public GraphNameSpace::Graph<T> // ...
If we (ie. non-Redmond, non-Hungarian people) don't name a double holding the maximum temperature as either max_temperature_double or worse, double_max_temperature, should we name a namespace containing graph utilities as GraphNameSpace?