mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-31 00:23:58 +00:00
19 lines
314 B
C
19 lines
314 B
C
|
//
|
||
|
// Command.h
|
||
|
// MacGap
|
||
|
//
|
||
|
// Created by Joe Hildebrand on 1/10/12.
|
||
|
// Copyright (c) 2012 Twitter. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <Webkit/WebScriptObject.h>
|
||
|
|
||
|
@interface Command : NSObject {
|
||
|
JSContextRef context;
|
||
|
}
|
||
|
|
||
|
- (id) initWithContext:(JSContextRef)aContext;
|
||
|
|
||
|
@end
|