cog/Application/PlaybackEventController.h

23 lines
493 B
C
Raw Permalink Normal View History

2009-03-05 17:04:16 +00:00
//
// PlaybackEventController.h
// Cog
//
// Created by Vincent Spader on 3/5/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <UserNotifications/UserNotifications.h>
2009-03-05 17:04:16 +00:00
2014-12-04 05:36:55 +00:00
#import "PlaybackController.h"
2021-02-26 20:01:48 +00:00
@interface PlaybackEventController
: NSObject <NSUserNotificationCenterDelegate, UNUserNotificationCenterDelegate> {
IBOutlet PlaybackController *playbackController;
2021-02-26 20:01:48 +00:00
IBOutlet NSWindow *mainWindow;
IBOutlet NSWindow *miniWindow;
2009-03-05 17:04:16 +00:00
}
@end