File: LogWindowController.h

package info (click to toggle)
lusernet.app 0.4.1-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 496 kB
  • ctags: 90
  • sloc: objc: 8,335; makefile: 51
file content (24 lines) | stat: -rw-r--r-- 323 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
22
23
24
/*
copyright 2002 Alexander Malmberg <alexander@malmberg.org>
*/

#ifndef LogWindowController_h
#define LogWindowController_h

#include <AppKit/NSWindowController.h>

@class NSTextView;

@interface LogWindowController : NSWindowController
{
	NSTextView *log;
}

- init;

-(void) addLogString: (NSString *)s;

@end

#endif