40 lines
936 B
Objective-C
40 lines
936 B
Objective-C
//
|
|
// MPExpressionStorage.h
|
|
// MathKit
|
|
//
|
|
// Created by Kim Wittenburg on 22.04.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPExpression.h"
|
|
|
|
|
|
/*!
|
|
@header
|
|
This file contains the <code>MPExpressionStorage</code> class.
|
|
*/
|
|
|
|
|
|
|
|
@class MPExpressionStorage, MPExpressionView, MPExpressionLayout;
|
|
|
|
|
|
/*!
|
|
@class MPExpressionStorage
|
|
@abstract An expression storage manages the contents of an expression view.
|
|
*/
|
|
@interface MPExpressionStorage : MPExpression
|
|
|
|
/*!
|
|
@property rootLayout
|
|
@abstract The receiver's root layout.
|
|
|
|
@discussion The root layout is the root node of the layout tree that draws
|
|
the receiver's contents in an expression view. For more
|
|
information see the documentation on the <code>@link
|
|
//apple_ref/occ/cl/MPLayout@/link</code> class.
|
|
*/
|
|
@property (nonatomic, strong) MPExpressionLayout *rootLayout;
|
|
|
|
@end
|