home *** CD-ROM | disk | FTP | other *** search
- /*
- * FILE: class.c
- * AUTHOR: R.G.
- * CREATED: June 25, 1990
- *
- * define generic class methods
- */
-
- # include "class.h"
-
- /******************************************************************
- * define generic init() method
- ******************************************************************/
- boolean Generic_Class::init(void)
- {
- return TRUE;
- }
-
- /******************************************************************
- * define generic destroy() method
- ******************************************************************/
- boolean Generic_Class::destroy(void)
- {
- return TRUE;
- }
-
-