mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
23 lines
567 B
Objective-C
23 lines
567 B
Objective-C
//
|
|
// TimelineLabelsTableViewDelegate.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 12/22/11.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
@class AnimationTimelineView;
|
|
@class MacSVGDocumentWindowController;
|
|
|
|
@interface TimelineLabelsTableViewDelegate : NSObject <NSTableViewDelegate, NSTableViewDataSource>
|
|
{
|
|
IBOutlet NSTableView * timelineLabelsTableView;
|
|
IBOutlet AnimationTimelineView * animationTimelineView;
|
|
IBOutlet MacSVGDocumentWindowController * macSVGDocumentWindowController;
|
|
}
|
|
|
|
- (void)reloadData;
|
|
- (void)reloadView;
|
|
|
|
@end
|