summaryrefslogtreecommitdiff
path: root/bindings/objc/src/SwordVerseManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/objc/src/SwordVerseManager.h')
-rw-r--r--bindings/objc/src/SwordVerseManager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/bindings/objc/src/SwordVerseManager.h b/bindings/objc/src/SwordVerseManager.h
index 71eef6a..c9667c5 100644
--- a/bindings/objc/src/SwordVerseManager.h
+++ b/bindings/objc/src/SwordVerseManager.h
@@ -6,18 +6,18 @@
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
-#import <Cocoa/Cocoa.h>
+#import <Foundation/Foundation.h>
#ifdef __cplusplus
-#include <versemgr.h>
-class sword::VerseMgr::Book;
+#include <versificationmgr.h>
+class sword::VersificationMgr::Book;
#endif
#define SW_VERSIFICATION_KJV @"KJV"
@interface SwordVerseManager : NSObject {
#ifdef __cplusplus
- sword::VerseMgr *verseMgr;
+ sword::VersificationMgr *verseMgr;
#endif
NSMutableDictionary *booksPerVersification;
}
@@ -30,7 +30,7 @@ class sword::VerseMgr::Book;
- (NSArray *)booksForVersification:(NSString *)verseScheme;
#ifdef __cplusplus
-- (sword::VerseMgr *)verseMgr;
+- (sword::VersificationMgr *)verseMgr;
#endif
@end