Files
screendump/screendumpprefs/CCSRootListController.m
Sharat M R 7c57363522 Add Pref
2019-04-23 02:55:53 +05:30

14 lines
236 B
Objective-C

#include "CCSRootListController.h"
@implementation CCSRootListController
- (NSArray *)specifiers {
if (!_specifiers) {
_specifiers = [[self loadSpecifiersFromPlistName:@"Root" target:self] retain];
}
return _specifiers;
}
@end