mirror of
https://github.com/drewmccormack/ensembles.git
synced 2026-03-03 18:23:18 +01:00
24 lines
499 B
Objective-C
24 lines
499 B
Objective-C
//
|
|
// IDMAddNoteViewController.h
|
|
// Idiomatic
|
|
//
|
|
// Created by Ernesto on 10/5/13.
|
|
// Copyright (c) 2013 The Mental Faculty B.V. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol IDMAddNoteDelegate <NSObject>
|
|
|
|
-(void)saveNote:(NSString*)text tags:(NSArray*)tags;
|
|
|
|
@end
|
|
|
|
|
|
@interface IDMAddNoteViewController : NSViewController
|
|
@property (nonatomic,weak) id<IDMAddNoteDelegate> noteDelegate;
|
|
@property (nonatomic,strong) NSString *note;
|
|
@property (nonatomic,strong) NSArray *tags;
|
|
|
|
@end
|