Dialog.h 371 B

12345678910111213141516171819202122
  1. //
  2. // Dialog.h
  3. // MG
  4. //
  5. // Created by Tim Debo on 5/27/14.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "Command.h"
  10. #import <JavaScriptCore/JavaScriptCore.h>
  11. @protocol DialogExports <JSExport>
  12. - (void) openDialog:(JSValue *)args;
  13. - (void) saveDialog: (JSValue*)args;
  14. @end
  15. @interface Dialog : Command <DialogExports>
  16. @property (assign) JSContext* context;
  17. @end