blob: ac098a440babba1ab2b1c446dd234fd8484aa653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// PlaylistTableView.h
// VKPC
//
// Created by Eugene on 12/1/13.
// Copyright (c) 2013-2014 Eugene Z. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class PlaylistTableController;
@interface PlaylistTableView : NSTableView
@property (strong) PlaylistTableController *controller;
- (int)getContentSize;
@end
|