mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-27 18:57:42 +00:00
28 lines
510 B
Objective-C
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
|