home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / ClassEditor.0.3 / Source / Application_more.m < prev    next >
Encoding:
Text File  |  1995-02-08  |  828 b   |  35 lines

  1. /* Application_more.m                 
  2.  *
  3.  * This object controls the data of a beaker (molecules, cameras, groups etc.)
  4.  * It is the main document of BeakerBoy and controls everything from loading to
  5.  * setting up the browser which does most of the other work.
  6.  *
  7.  * For interface-info see the header file. The comments in this file mostly
  8.  * cover only the real implementation details.
  9.  *
  10.  * Written by:         Thomas Engel
  11.  * Created:            23.10.1993 (Copyleft)
  12.  * Last modified:     12.11.1994
  13.  */
  14.  
  15.  
  16. #import "Application_more.h"
  17.  
  18. @implementation Application(More)
  19.  
  20. - forward:(SEL)aSelector :(marg_list)argFrame
  21. {
  22.     if ( delegate != nil &&
  23.          [delegate respondsTo:aSelector] )
  24.         return [delegate performv:aSelector :argFrame];
  25.     return [self doesNotRecognize:aSelector];
  26. }
  27.  
  28. @end
  29.  
  30. /*
  31.  * History: 13.01.95 Buh
  32.  *            
  33.  *
  34.  * Bugs: - ...
  35.  */