home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / OpenStepConversion / 3.3Headers / eointerface / EOTextAssociation.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-26  |  407 b   |  23 lines

  1. // EOTextAssociation.h
  2. // Enterprise Objects Framework
  3. // Copyright (c)1993, NeXT Computer, Inc. All rights reserved.
  4.  
  5. #ifdef SHLIB
  6. #import "shlib.h"
  7. #endif
  8.  
  9. #import "EOAssociation.h"
  10.  
  11. @class Window;
  12.  
  13. @interface EOTextAssociation: EOAssociation
  14. {
  15.     id _lastValue;
  16.     struct {
  17.         int didChange:1; // has the text changed since the last AsscocDidEdit?
  18.     int resigningResponder:1;
  19.     } _flags;
  20. }
  21.  
  22. @end
  23.