19 lines
380 B
Objective-C
19 lines
380 B
Objective-C
//
|
|
// MPElementParser.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 06.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MPParsedElement.h"
|
|
#import "MPParseError.h"
|
|
|
|
@interface MPElementParser : NSObject
|
|
|
|
- (MPParsedElement *)parseElement:(NSString *)string error:(MPParseError *__autoreleasing *)error;
|
|
|
|
@end
|
|
|