mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
23 lines
316 B
Objective-C
23 lines
316 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// Tracks
|
|
//
|
|
// Created by Grygorii Zharun on 6/16/14.
|
|
//
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)dealloc
|
|
{
|
|
[super dealloc];
|
|
}
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
// Insert code here to initialize your application
|
|
}
|
|
|
|
@end
|