Created
August 7, 2011 07:09
-
-
Save anonymous/1130148 to your computer and use it in GitHub Desktop.
Database.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import <sqlite3.h> | |
#define kDatabaseFile @"pc2mac.sqlite" | |
@interface Database : NSObject { | |
} | |
+(Database *) sharedDatabase; | |
sqlite3 *Pc2MacDatabase(); | |
void ClosePc2MacDatabase(); | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment