Added MPExpressionView
This commit is contained in:
29
MathPad/MPExpressionView.m
Normal file
29
MathPad/MPExpressionView.m
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// MPExpressionView.m
|
||||
// MathPad
|
||||
//
|
||||
// Created by Kim Wittenburg on 17.04.14.
|
||||
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MPExpressionView.h"
|
||||
|
||||
@implementation MPExpressionView
|
||||
|
||||
- (id)initWithFrame:(NSRect)frame
|
||||
{
|
||||
self = [super initWithFrame:frame];
|
||||
if (self) {
|
||||
// Initialization code here.
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)drawRect:(NSRect)dirtyRect
|
||||
{
|
||||
[super drawRect:dirtyRect];
|
||||
|
||||
// Drawing code here.
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user