home *** CD-ROM | disk | FTP | other *** search
- /****
- * CLaughsDoc.cp
- *
- * Declaration of a document class full of laughs.
- *
- * Copyright © 1994 NeoLogic Systems. All rights reserved.
- *
- ****/
- #pragma once /* Include this file only once */
-
- #include CNeoDocRootH
-
- const OSType kLaughsFileType = 'Ne6d';
-
- class CLaughsDoc : public CNeoDocRoot {
- public:
- CLaughsDoc(CApplication *aSupervisor, const Boolean aPrintable, const Boolean aNewFile);
-
- virtual void buildWindow(void);
- virtual void NewFile(void);
- virtual void OpenFile(SFReply *macSFReply);
-
- void createObjects(void);
- void printOut(void);
- };