forked from johnjohndoe/LineReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
31 lines (25 loc) · 665 Bytes
/
main.m
File metadata and controls
31 lines (25 loc) · 665 Bytes
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
//
// main.m
// LineReader
//
// Created by Tobias Preuss on 05.10.10.
// Copyright 2010 Tobias Preuss. All rights reserved.
//
/*! \mainpage Line Reader
* \author Tobias Preuss
* \date 2010.10
*
* \section Description
*
* <p>This application implements functions to read forwards or backwards from files.
* The NSData class is used to handle the binary data within the file.</p>
*
* \section Configuration
* <p>The source path, number of maximum lines and reading direction can be changed
* in the user interface.</p>
*/
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[])
{
return NSApplicationMain(argc, (const char **) argv);
}