20 lines
382 B
Objective-C
20 lines
382 B
Objective-C
//
|
|
// PlaybackEventController.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 3/5/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Growl/GrowlApplicationBridge.h>
|
|
|
|
@class AudioScrobbler;
|
|
@interface PlaybackEventController : NSObject <GrowlApplicationBridgeDelegate> {
|
|
NSOperationQueue *queue;
|
|
|
|
AudioScrobbler *scrobbler;
|
|
}
|
|
|
|
@end
|