18 lines
302 B
Objective-C
18 lines
302 B
Objective-C
//
|
|
// MPVariable.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 09.10.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import "MPValueGroup.h"
|
|
|
|
@class MPVariable;
|
|
|
|
@interface MPVariable : NSObject <MPValue>
|
|
|
|
@property (readonly, nonatomic, strong) NSString *variableName;
|
|
|
|
@end
|