home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff280.lzh / Graph / object / default.c next >
C/C++ Source or Header  |  1989-11-20  |  661b  |  35 lines

  1. /*
  2.  *                 GRAPH, Version 1.00 - 4 August 1989
  3.  *
  4.  *            Copyright 1989, David Gay. All Rights Reserved.
  5.  *            This software is freely redistrubatable.
  6.  */
  7.  
  8. /* Default object methods */
  9.  
  10. #include "object.h"
  11. #include "object/default.h"
  12. #include "uio.h"
  13.  
  14. int notdone(struct object *this)
  15. {
  16.     message(this->g, "Routine unimplemented", (char *)NULL);
  17.  
  18.     return FALSE;
  19. }
  20.  
  21. struct Region *ref_uncalled(struct object *this)
  22. {
  23.     message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
  24.  
  25.     return NULL;
  26. }
  27.  
  28. int uncalled(struct object *this)
  29. {
  30.     message(this->g, "Hurrah! You've found a bug!", (char *)NULL);
  31.  
  32.     return FALSE;
  33. }
  34.  
  35.