Archived
1

Added MPExpressionView

This commit is contained in:
Kim Wittenburg
2014-04-18 16:45:53 +02:00
parent af1121290d
commit fb55c0aa71
3 changed files with 69 additions and 17 deletions

View 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