Im beginner in c++. I have seen several times when object created like:
class_name object_name();
and after that you can refer to object_name as an object of the class. How can i do this in my class? Should I override the constructor? And how to do that?