home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Examples / MiscTree_Browser / AppDelegate.h next >
Encoding:
Text File  |  1994-03-27  |  756 b   |  29 lines

  1. //
  2. // AppDelegate.h -- Example of using category of MiscTree that allows a
  3. //        MiscTree to be a delegate for an NXBrowser
  4. //        Written by Scott Anguish Copyright (c) 1994 by Scott Anguish.
  5. //                Version 1.0.  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This program is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. #import <appkit/appkit.h>
  16. #import <misckit/misckit.h>
  17.  
  18. @interface AppDelegate:Object
  19. {
  20.     id    theBrowser;
  21.     id    selectedLabelPath;
  22.     id    selectedLabelNode;
  23. }
  24.  
  25. - loadTree:sender;
  26.  
  27.  
  28. @end
  29.