19 lines
248 B
Objective-C
19 lines
248 B
Objective-C
//
|
|
// MRDPRailWindow.m
|
|
// Mac
|
|
//
|
|
// Created by Laxmikant Rashinkar
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "MRDPRailWindow.h"
|
|
|
|
@implementation MRDPRailWindow
|
|
|
|
- (BOOL) canBecomeKeyWindow
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|