mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
20 lines
337 B
Objective-C
20 lines
337 B
Objective-C
//
|
|
// TextDocument.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 1/18/12.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class TextDocumentWindowController;
|
|
|
|
@interface TextDocument : NSDocument
|
|
{
|
|
}
|
|
|
|
@property (strong) IBOutlet TextDocumentWindowController * textDocumentWindowController;
|
|
|
|
@end
|