Cog/Application/PlaybackEventController.h

26 lines
556 B
C
Raw Normal View History

2009-03-05 14:04:16 -03: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 14:04:16 -03:00
2014-12-04 02:36:55 -03:00
#import "PlaybackController.h"
#import "PlaylistEntry.h"
2014-12-04 02:36:55 -03:00
2009-03-05 14:04:16 -03:00
@class AudioScrobbler;
2021-02-26 17:01:48 -03:00
@interface PlaybackEventController
: NSObject <NSUserNotificationCenterDelegate, UNUserNotificationCenterDelegate> {
2014-12-04 02:36:55 -03:00
IBOutlet PlaybackController *playbackController;
2021-02-26 17:01:48 -03:00
2014-12-04 02:36:55 -03:00
IBOutlet NSWindow *mainWindow;
IBOutlet NSWindow *miniWindow;
2009-03-05 14:04:16 -03:00
}
@end