23 lines
400 B
Objective-C
23 lines
400 B
Objective-C
//
|
|
// PlaylistView.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 3/20/05.
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "AppController.h"
|
|
#import "PlaybackController.h"
|
|
#import "PlaylistController.h"
|
|
|
|
@interface PlaylistView : NSTableView {
|
|
|
|
IBOutlet PlaybackController *playbackController;
|
|
IBOutlet PlaylistController *playlistController;
|
|
|
|
}
|
|
|
|
@end
|