public
Description: A small sample application that defines a category of NSAppleEventDescriptor that will convert NSAppleEventDescriptors into normal Cocoa objects.
Homepage: http://www.fromconcentratesoftware.com/
Clone URL: git://github.com/Grayson/applescripttodictionarywithnutoo.git
Grayson Hansard (author)
Mon Apr 21 16:20:23 -0700 2008
100644 15 lines (12 sloc) 0.289 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// main.m
// ApplescriptToDictionaryWithNuToo
//
// Created by Grayson Hansard on 4/21/08.
// Copyright From Concentrate Software 2008. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
int main(int argc, char *argv[])
{
    return NSApplicationMain(argc, (const char **) argv);
}