mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-07 18:23:29 +01:00
20 lines
367 B
Objective-C
20 lines
367 B
Objective-C
//
|
|
// XMLAttributesTableView.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 10/15/11.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class XMLAttributesTableController;
|
|
|
|
@interface XMLAttributesTableView : NSTableView {
|
|
IBOutlet XMLAttributesTableController * xmlAttributesTableController;
|
|
@private
|
|
|
|
}
|
|
|
|
@end
|