1
edit
Changes
→CField: data blurb
** '''should not accept any parameters'''
** '''should return int''' (it already does)
=== Functions to be Removed ===
The following functions are a bit awkward. Remove them. See the '''Functions to be Added''' section for a better design.
* void** data()
* const void* pdata() const
=== Functions to be Added ===
These functions act as setters/getters to CField's internal data member. Code them so that other classes can obtain or update the data member. Make these '''public'''.
* void* data() const
* void data(void*)
== CLine ==