[go: up one dir, main page]

File: MemoryStore.h

package info (click to toggle)
agenda.app 0.36-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 504 kB
  • ctags: 53
  • sloc: objc: 4,979; makefile: 57
file content (16 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* emacs buffer mode hint -*- objc -*- */

#import "AgendaStore.h"
#import "ConfigManager.h"

@interface MemoryStore : NSObject <MemoryStore>
{
  ConfigManager *_config;
  NSMutableDictionary *_data;
  NSMutableDictionary *_tasks;
  BOOL _modified;
  NSString *_name;
  BOOL _displayed;
  BOOL _writable;
}
@end