For a class named Object, what is the standard signature of the copy constructor ?
Object
Object(const Object& o)
Object(Object& o)
Object(const Object&& o)
Object(Object&& o)