mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
17 lines
406 B
Objective-C
17 lines
406 B
Objective-C
//
|
|
// TextDocumentWindowController.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 1/18/12.
|
|
// Copyright © 2016 ArkPhone LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface TextDocumentWindowController : NSWindowController <NSTextDelegate, NSTextViewDelegate>
|
|
{
|
|
}
|
|
@property(strong) IBOutlet NSTextView * documentTextView; // compiler says NSTextView doesn't support weak references
|
|
|
|
@end
|