The header file contains other accessors and mutators for the other private members as well. This give me a LOT of errors when I try to link this in with my project. It is not allowing me to create the string objects for some reason. It is not defining any of my variables of type string and it is not recognizing any of them when I use them afterwards. Basically the string header file is not getting included.
I am using VS2008. Anyone have any idea why this is happening to me?
You could temporarily use usingnamespace std; and then take advantage of the editor/IDE search and replace features to save some typing. You might also find common conflicts this way--which, might be nice to resolve in case a user actually does try to bring everything into global scope.