Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. //
  2. // EventWindow.h
  3. // gomacdraw
  4. //
  5. // Created by John Asmuth on 5/11/11.
  6. // Copyright 2011 Rutgers University. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10. #import "EventHolder.h"
  11. #import "gmd.h"
  12.  
  13. @interface EventWindow : NSWindow {
  14. @private
  15. NSConditionLock* lock;
  16. NSMutableArray* eventQ;
  17. }
  18.  
  19.  
  20. @property (retain) NSMutableArray* eventQ;
  21. @property (retain) NSConditionLock* lock;
  22.  
  23. - (void)nq:(GMDEvent)eh;
  24. - (GMDEvent)dq;
  25.  
  26. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement