spiegel-keyman/mac/KeymanEngine4Mac/KeymanEngine4Mac/KME/NFont.m
2017-08-10 13:11:52 +07:00

28 lines
510 B
Objective-C

//
// NFont.m
// KeymanEngine4Mac
//
// Created by Serkan Kurt on 22/06/2015.
// Copyright (c) 2017 SIL International. All rights reserved.
//
#import "NFont.h"
@implementation NFont
- (id)init {
self = [super init];
if (self) {
_name = @"";
}
return self;
}
- (NSString *)description {
NSString *format = @"<%@:%p N:%@ S:%d C:%d>";
NSString *str = [NSString stringWithFormat:format, self.className, self, self.name, self.size, self.color];
return str;
}
@end