File: TcpcryptLauncherAppDelegate.m

package info (click to toggle)
tcpcrypt 0.3~rc1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,292 kB
  • ctags: 1,285
  • sloc: ansic: 11,305; asm: 482; sh: 192; objc: 149; makefile: 98
file content (28 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
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
//
//  TcpcryptLauncherAppDelegate.m
//  TcpcryptLauncher
//
//  Created by Samuel Quinn Slack on 8/17/10.
//  Copyright (c) 2010 __MyCompanyName__. All rights reserved.
//


#import "TcpcryptLauncherAppDelegate.h"

#include "../../../user/src/tcpcrypt_version.h"

@implementation TcpcryptLauncherAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    NSString* title = [NSString stringWithFormat:@"tcpcrypt v%s" ,
    						 TCPCRYPT_VERSION];

    [title autorelease];
    [[self window] setTitle:title];
    // Insert code here to initialize your application
}

@end