home *** CD-ROM | disk | FTP | other *** search
- /*
- * GRAPH, Version 1.00 - 4 August 1989
- *
- * Copyright 1989, David Gay. All Rights Reserved.
- * This software is freely redistrubatable.
- */
-
- /* Default object methods */
-
- #include "object.h"
- #include "object/default.h"
- #include "uio.h"
-
- int notdone(struct object *this)
- {
- message(this->g, "Routine unimplemented", (char *)NULL);
-
- return FALSE;
- }
-
- struct Region *ref_uncalled(struct object *this)
- {
- message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
-
- return NULL;
- }
-
- int uncalled(struct object *this)
- {
- message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
-
- return FALSE;
- }
-
-