I have a problem with accessing a function from a class with the class object in my main function. I am just trying to make the object for the class and use that ob
I had similar problem. My header file which included the definition of the class wasn't working. I wasn't able to use the member functions of that class. So i simply copied my class to another header file. Now its working all ok.