home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / MiscBundleLoader.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  735 b   |  24 lines

  1. //
  2. //    MiscBundleLoader.m -- an object category to load .bundle files with
  3. //            code for a specific ObjC class in them
  4. //        Written by Mike Ferris Copyright (c) 1994 by Mike Ferris.
  5. //        Unburied from original MOKit by Don Yacktman.
  6. //                Version 1.0.  All rights reserved.
  7. //
  8. //        This notice may not be removed from this source code.
  9. //
  10. //    This object is included in the MiscKit by permission from the author
  11. //    and its use is governed by the MiscKit license, found in the file
  12. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  13. //    for a list of all applicable permissions and restrictions.
  14. //    
  15.  
  16.  
  17. #import <objc/Object.h>
  18.  
  19. @interface Object(MiscBundleLoader)
  20.  
  21. + (Class)loadClassBundle:(const char *)className;
  22.  
  23. @end
  24.