Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathPad/MPExpressionView.h
2014-04-18 16:45:53 +02:00

19 lines
360 B
Objective-C

//
// MPExpressionView.h
// MathPad
//
// Created by Kim Wittenburg on 17.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class MPExpressionView, MPRange;
@interface MPExpressionView : NSView
@property (nonatomic, getter = isEditable) BOOL editable;
@property (nonatomic, strong) MPRange *selection;
@end