THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 13/02/2003 at 00:04, xxxxxxxx wrote:
First...
class ErrorDialog : GeModalDialog
should be
class ErrorDialog : public GeModalDialog
otherwise you can't access the members of GeModalDialog (error C2248: 'Open' : cannot access public).
Second...
}
#endif //_ERRORDIALOG_H_
the end bracket of the class is missing the ';' it should be
};
#endif //_ERRORDIALOG_H_
Your PoserCR2Loader class is ok, just the dialog one is missing it.
These are easy mistakes when you are out of practice
HTH!