Hi all
I have code that looks like this:
//// MyThing.h
#include <string>
using std::string;
class MyThing
{
public:
enum Value
{
FIRST,
SECOND,
THIRD,
COUNT
}
static Value lookup(string &stringFromFile );
private:
...
};
////
...