19 lines
360 B
Objective-C
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
|