Skip to content

Instantly share code, notes, and snippets.

Created August 7, 2011 07:09
Show Gist options
  • Save anonymous/1130148 to your computer and use it in GitHub Desktop.
Save anonymous/1130148 to your computer and use it in GitHub Desktop.
Database.h
#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