I have objects of different types derived from one base (for example circle, rectangle, polygon... and so on) and I have set of predefined operations that can be applied to those objects (for example move, rotate, copy...and so on). The solution I like in this situation is visitor pattern. I have visitors for every operation which contains full set of operations for all types. This allows me to add new functions to the objects without changing the object itself. Operations are definitely going to be changed and added more frequently then new object types, so that's really great, but there is one problem. All stated above is implemented as a library which may be (and will be) extended by another programmers in a future. Programmers may add new type of objects and either implement operations or not. For example one may add "triangle" class that supports move, but doesn't support rotation. In this case programmer wouldn't be able to extend my visitor to handle move operation for his object. I see one more solution - having interfaces like i_movable, i_rotatable, i_copyable. Every class implements one or more of this interfaces, then I check in my library, if specified object supports given interface with dynamic_cast and apply the operation. Something like
if (i_movable* m = dynamic_cast<i_movable>(obj)) m->move(10, 20);
but I don't like this solution much. Can anyone suggest something better?
That's may not be really important for OOP design, but the language of implementation is C++, so I'm limited with C++ capabilities.
update
If no one can think of a better solution could you please at least leave a vote for proposed one?
Thanks in advance.

movefunction that will work for set of geometries, but I can't write generic serialization function for copying and saving the object. – axe Nov 15 '11 at 8:18