home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / dbkit / entities.h < prev    next >
Text File  |  1992-03-27  |  413b  |  25 lines

  1. /*
  2. **      entities.h
  3. **      Database Kit, Release 3.0
  4. **      Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import <objc/objc.h>
  8. #import <dbkit/types.h>
  9.  
  10. @class List;
  11. @class DBDatabase;
  12.  
  13. @protocol DBEntities <DBTypes>
  14.  
  15. - (const char *)name;
  16.  
  17. - propertyNamed:(const char*)aName;
  18. - getProperties:(List*)aList;
  19.  
  20. - (DBDatabase*)database;
  21.  
  22. - (BOOL)matchesEntity:(id<DBEntities>)anEntity;
  23.  
  24. @end
  25.