home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscClipTextPalette / MiscClipTextPalette.m < prev    next >
Encoding:
Text File  |  1995-07-12  |  844 b   |  44 lines

  1. //
  2. //    MiscClipTextPalette.m -- palettized MiscClipTextField(Cell)
  3. //        Written and Copyright (c) 1995 by Balazs Pataki. 
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14.  
  15. #import "MiscClipTextPalette.h"
  16. #import <objc/objc-runtime.h>
  17.  
  18.  
  19. #define CLASS_VERSION    0
  20. #define CLASS_NAME         "MiscClipTextPalette"
  21.  
  22.  
  23. @implementation  MiscClipTextPalette
  24.  
  25. + initialize
  26. {
  27.     if (self == objc_lookUpClass(CLASS_NAME))  {
  28.         [self setVersion:CLASS_VERSION];
  29.     }
  30.     
  31.     return self;
  32. }
  33.  
  34.  
  35.  
  36. - finishInstantiate
  37. {
  38.     return self;
  39. }
  40.  
  41.  
  42.  
  43. @end
  44.