mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
18 lines
310 B
Objective-C
18 lines
310 B
Objective-C
//
|
|
// NSURL+Additions.h
|
|
// NativeHost
|
|
//
|
|
// Created by Francisco Tolmasky on 6/3/09.
|
|
// Copyright 2009 280 North, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface NSURL (Additions)
|
|
|
|
- (NSURL *)HTTPFileSystemURL;
|
|
+ (NSURL *)fileSystemURLFromHTTPFileSystemString:(NSString *)aString;
|
|
|
|
@end
|