22 lines
479 B
Objective-C
22 lines
479 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"
|
|
#import "MPFunctionLayout.h"
|
|
|
|
@interface MPExpressionLayout : MPLayout
|
|
|
|
- (instancetype)initWithExpression:(MPExpression *)expression
|
|
parent:(MPFunctionLayout *)parent;
|
|
|
|
@property (readonly, nonatomic, weak) MPExpression *expression;
|
|
|
|
@end
|