27 lines
388 B
Objective-C
27 lines
388 B
Objective-C
//
|
|
// MPWhiteView.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 28.09.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
|
|
/*!
|
|
@header
|
|
This file contains the <code>MPWhiteView</code> class.
|
|
*/
|
|
|
|
|
|
|
|
@class MPWhiteView;
|
|
|
|
|
|
/*!
|
|
@class MPWhiteView
|
|
@abstract A <code>NSView</code> that draws a white square in its frame.
|
|
*/
|
|
@interface MPWhiteView : NSView
|
|
|
|
@end
|