So far all I have in my DecisionTree.h
file is
namespace DecisionTree
{
public static double Entropy(int pos, int neg);
}
and Visual Studio is already highlighting the public
and saying
Error: expected a declaration.
What am I missing?