home *** CD-ROM | disk | FTP | other *** search
- ╦typedef char String32╦[33╦]; ╘// Part 1 class Exception ╦{ protected: String32 sName╦; public: Exception╦() : { strcpy╦( (char *)sName╦, "Exception"╦); } char* Name╦(){return (char *)sName╦; } }; class MathExcept╦ : public Exception ╦{ public: MathExcept╦(){ strcpy╦( (char *)sName╦, "Math Exception"╦); } }; class IOExcept ╦: public Exception ╦{ public: IOExcept╦(){ strcpy╦( (char *)sName╦, "IO Exception"╦); } };