mirror of
https://github.com/macports/pallet.git
synced 2026-03-31 14:39:01 -07:00
git-svn-id: https://svn.macports.org/repository/macports/branches/gsoc10-gui@69801 d073be05-634f-4543-b044-5fe20cf6d1d6
19 lines
297 B
Objective-C
19 lines
297 B
Objective-C
//
|
|
// MPQueueTableView.h
|
|
// Pallet
|
|
//
|
|
// Created by Vasileios Georgitzikis on 16/7/10.
|
|
// Copyright 2010 Tzikis. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface MPQueueTableView : NSTableView
|
|
{
|
|
IBOutlet NSMutableArray *queueArray;
|
|
IBOutlet NSArrayController *queue;
|
|
}
|
|
|
|
@end
|