mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
22 lines
333 B
Objective-C
22 lines
333 B
Objective-C
//
|
|
// Server.h
|
|
// NativeHost
|
|
//
|
|
// Created by Francisco Tolmasky on 8/18/09.
|
|
// Copyright 2009 280 North, Inc.. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface Server : NSObject
|
|
{
|
|
NSFileHandle * outputFile;
|
|
NSFileHandle * errorFile;
|
|
NSTask * process;
|
|
}
|
|
|
|
- (BOOL)start;
|
|
- (void)stop;
|
|
|
|
@end
|