>whats the difference between an OO object vs. a class.
Strictly in C++ context, a class is a blueprint for an object, just like int is a blueprint for a variable of type int. I get the feeling the...