home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * This file was generated by the SOM Compiler.
- * Generated using:
- * SOM incremental update: 6.34
- */
-
- #ifndef lint
- static char *sccsid = "%Z% %I% %W% %G% %U% [%H% %T%] (c)IBM Corp. 1992";
- #endif
-
- /*
- * This class is adapted from the book
- * Class Construction in C and C++, Object Oriented Fundamentals
- * by Roger Sessions, Copyright (c) 1992 Prentice Hall.
- * Reprinted with permission.
- */
-
- #define baseType_Class_Source
- #if defined(_WIN32)
- #include "statcls.h"
- #endif
- #include "bt.ih"
- #include "helper.h"
-
- /*
- * Returns TRUE if the target object matches target,
- * FALSE otherwise.
- */
-
- SOM_Scope boolean SOMLINK match(baseType * somSelf,
- string target)
- {
- /* baseTypeData *somThis = baseTypeGetData(somSelf); */
- baseTypeMethodDebug("baseType", "match");
- shouldHaveOverridden(somSelf, "match");
- SOM_IgnoreWarning (target);
- return FALSE;
- }
-
- /*
- * Prints the target object in some reasonable format.
- */
-
- SOM_Scope void SOMLINK print(baseType * somSelf,
- FILE * outputFile)
- {
- /* baseTypeData *somThis = baseTypeGetData(somSelf); */
- baseTypeMethodDebug("baseType", "print");
- shouldHaveOverridden(somSelf, "print");
- SOM_IgnoreWarning (outputFile);
- }
-