22 lines
277 B
Matlab
22 lines
277 B
Matlab
|
#import "InfoView.h"
|
||
|
|
||
|
@implementation InfoView
|
||
|
/*
|
||
|
- (id)initWithFrame:(NSRect)frameRect
|
||
|
{
|
||
|
if ((self = [super initWithFrame:frameRect]) != nil) {
|
||
|
// Add initialization code here
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)drawRect:(NSRect)rect
|
||
|
{
|
||
|
}
|
||
|
*/
|
||
|
- (BOOL)isFlipped
|
||
|
{
|
||
|
return YES;
|
||
|
}
|
||
|
@end
|