mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
26 lines
470 B
Objective-C
26 lines
470 B
Objective-C
//
|
|
// AppController.h
|
|
// Web2PDF Server
|
|
//
|
|
// Created by Jürgen on 13.09.06.
|
|
// Copyright 2006 Cultured Code.
|
|
// License: Creative Commons Attribution 2.5 License
|
|
// http://creativecommons.org/licenses/by/2.5/
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class GCDWebServer;
|
|
|
|
@interface WebServerController : NSObject
|
|
{
|
|
}
|
|
|
|
@property(strong) GCDWebServer * httpServer;
|
|
@property(assign) NSUInteger webServerPort;
|
|
|
|
- (void)startProcessing;
|
|
- (void)stopProcessing;
|
|
|
|
@end
|