From 757be9aeba67d609942c54c1bbe0461e120a392e Mon Sep 17 00:00:00 2001 From: Avery Pierce Date: Tue, 17 Jan 2017 20:36:01 -0600 Subject: OLMKit: Change OLMKitVersionString from a C function to an Obj-C static method --- xcode/OLMKit/OLMKit.m | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'xcode/OLMKit/OLMKit.m') diff --git a/xcode/OLMKit/OLMKit.m b/xcode/OLMKit/OLMKit.m index e7bfd25..c383650 100644 --- a/xcode/OLMKit/OLMKit.m +++ b/xcode/OLMKit/OLMKit.m @@ -19,11 +19,15 @@ #include "olm/olm.h" -NSString *OLMKitVersionString() +@implementation OLMKit + ++ (NSString*)versionString { uint8_t major, minor, patch; - + olm_get_library_version(&major, &minor, &patch); - + return [NSString stringWithFormat:@"%tu.%tu.%tu", major, minor, patch]; } + +@end -- cgit v1.2.3