Hi,
I am looking for a data type, method that allows me to store mixed data
types, eg CString,int,double etc.
At the moment i am converting my mixed data types them into CStrings and
storing them in a CString Vector,
vector<CString> m_tEvents.
Now when i want access to the variables i then have to convert them from
CString back to their original data type. I would like to get rid of this
conversion to CString then conversion back to data type as i think it's
inefficient and unnecessary.
Does anyone know a method or data type that will stop me from having to do
these conversions?
Thanks In Advance
Macca