Even though there are no static classes in C++, coming from a Java background I use to create a helper class like Util containing only static methods. Is this c
Util
In C++, just make them free functions. There's no need or reason to place them in a class at all. Unless you're doing shizzle with templates.