Command.h 314 B

123456789101112131415161718
  1. //
  2. // Command.h
  3. // MacGap
  4. //
  5. // Created by Joe Hildebrand on 1/10/12.
  6. // Copyright (c) 2012 Twitter. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <Webkit/WebScriptObject.h>
  10. @interface Command : NSObject {
  11. JSContextRef context;
  12. }
  13. - (id) initWithContext:(JSContextRef)aContext;
  14. @end