20 lines
419 B
Objective-C
20 lines
419 B
Objective-C
//
|
|
// MPExpressionLayout.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 07.08.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
#import "MPLayout.h"
|
|
#import "MPExpression.h"
|
|
|
|
@interface MPExpressionLayout : MPLayout
|
|
|
|
- (instancetype)initRootLayoutWithExpressionStorage:(MPExpressionStorage *)expressionStorage;
|
|
|
|
@property (readonly, nonatomic, weak) MPExpression *expression;
|
|
|
|
@end
|