add command wrapper class

This commit is contained in:
optixx
2009-09-01 17:10:59 +02:00
parent c60d2f92fa
commit 58b422771a
19 changed files with 864 additions and 172 deletions

View File

@@ -0,0 +1,20 @@
//
// CommandWrapper.h
// Quickdev16
//
// Created by David Voswinkel on 09-09-01.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface CommandWrapper : NSObject {
IBOutlet NSTextField *textField;
}
- (void)doCommand;
- (void)doPipedCommand;
@end