Need help creating an Object.

RandallR:
I was attempting to define a class (or structure) that was all "static" and would not need to be instanciated.

You can do that using static class members, as you have described.

The static members should be defined and initialised in the implementation file.