// // RDocumentController.m // RemoteR // // Created by Simon Urbanek on 2/13/11. // Copyright 2011 Simon Urbanek. All rights reserved. // #import "RDocumentController.h" @implementation RDocumentController - (NSString *)defaultType { // "New" creates the console only if there is no other document // we may change this later for something more sane return [[self documents] count] ? @"RDocument" : @"R Console"; } - (void) awakeFromNib { } @end