home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / ClassFree / CFsampleclass / files.doc < prev    next >
Text File  |  1998-04-12  |  1KB  |  37 lines

  1. Description of files:
  2. ---------------------
  3.  
  4. class.c
  5.  
  6.  The main class source. The dispatcher routine is responsible
  7. for controling all the features of the BOOPSI class.
  8.  For debugging output, see class_lib.c section below.
  9.  
  10. class.fd
  11.  
  12.  The library descriptor. You won't need to modify this.
  13.  
  14. class.h
  15.  
  16.  This is the place to put all private datastructures and info
  17. about your BOOPSI class.
  18.  You can make an additional headerfile for distribution. This
  19. should contain only the definitions needed to use the class,
  20. such as classname and attributes.
  21.  
  22. class_lib.c
  23.  
  24.  This is library housekeeping routines. You shouldn't need to
  25. modify these. You might want to modify the OpenLibrary calls in
  26. openlibs() to suit your needs, this is also the place to open
  27. other external BOOBSI classes that you might need.
  28.  Remember to modify closelibs() according to your modifications
  29. of openlibs().
  30.  Routines to activate simple debug output from the class is also
  31. in here. To use them you must #define DEBUG globally. This is
  32. done by editing the projects compiler settings.
  33.  The debugging output works via the included debug.lib linked
  34. library, which I have developed myself. You can optionally replace
  35. your compilers debug.lib with this one. Read the file debug.doc
  36. for more info on how to use debug.lib.
  37.