I have a class which does coordinate conversions.
I have several different data structures which are used to pass data in and out of this class.
I have a setCoordinate function which I use to pass one of these data structures in, to set the input coordinates.
Here's my problem:
How do I define these data structures? Should they be a class or a struct?
They need to have a base class in order to be passed...