public
Description: an iPhone application for Remember the Milk.
Homepage: http://deadbeaf.org/out/milpon/
Clone URL: git://github.com/mootoh/milpon.git
mootoh (author)
Sun May 17 02:36:03 -0700 2009
commit  b2256409cb763a1289529db1a4dbb5d9816a785c
tree    c264634876022e1ec79fb37a9234029ed64d777e
parent  5c3fe827d0525e1980456db44ca934196da145d9
milpon / others / Milpon.h
100644 31 lines (20 sloc) 0.39 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* Milpon.h
* Milpon
*
* Created by mootoh on 4/13/09.
* Copyright 2009 deadbeaf.org. All rights reserved.
*
*/
 
@protocol TaskEditDelegate
 
- (void) setDue:(NSDate *)date;
- (void) setNote:(NSString *)note;
- (void) updateView;
 
@end
 
@class RTMList;
 
@protocol HavingList
 
- (void) setList:(RTMList *)list;
 
@end
 
@protocol HavingTag
 
- (void) setTag:(NSArray *) tags;
 
@end