mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +01:00
24 lines
316 B
Mathematica
24 lines
316 B
Mathematica
|
|
//
|
||
|
|
// 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
|