This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
TextEd.app/TextEd/Document.h
2014-01-21 23:30:22 +01:00

18 lines
356 B
Objective-C

//
// Document.h
// TextEd
//
// Created by Jeena on 2014-01-21.
// Copyright (c) 2014 Jeena. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface Document : NSDocument {
NSAttributedString *stringModel;
}
@property (unsafe_unretained) IBOutlet NSTextView *textView;
@property (nonatomic, readwrite) NSAttributedString *stringModel;
@end