File: GUISource.h

package info (click to toggle)
lusernet.app 0.4.2-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 560 kB
  • ctags: 97
  • sloc: objc: 8,335; sh: 1,049; makefile: 63
file content (21 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
copyright 2002 Alexander Malmberg <alexander@malmberg.org>
*/

#ifndef GUISource_h
#define GUISource_h

/*
Things a MsgDB_Source can implement so it can be configured easily in the
preferences panel.
*/

@protocol GUISource
-(NSString *) sourceName;
-(NSString *) sourceType;

-(void) displayPropertiesWindow;
@end

#endif