mirror of
https://github.com/glebd/cocoafob.git
synced 2026-06-20 16:44:31 +00:00
23 lines
542 B
Objective-C
23 lines
542 B
Objective-C
//
|
|
// CocoaFob
|
|
//
|
|
// URLCommand.h
|
|
//
|
|
// Support for custom URL scheme for app registration
|
|
//
|
|
// Created by Gleb Dolgich on 20/03/2009.
|
|
// Follow me on Twitter @gbd
|
|
// Copyright (C) 2009 PixelEspresso. All rights reserved.
|
|
// Licensed under CC Attribution License 3.0 <http://creativecommons.org/licenses/by/3.0/>
|
|
//
|
|
// Based on "Handling URL schemes in Cocoa", a blog post by Kimbro Staken
|
|
// <http://www.xmldatabases.org/WK/blog/1154?t=item>
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface URLCommand : NSScriptCommand {
|
|
}
|
|
|
|
@end
|