Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
coderyi committed Sep 25, 2016
1 parent 48b38e5 commit 614a8df
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 1 addition & 6 deletions NetworkEye/NetworkEye/NEHTTPModelManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,11 @@
//

#import <Foundation/Foundation.h>
#if FMDB_SQLCipher
#import "FMDB.h"
#endif

#import "NEHTTPEye.h"
@class NEHTTPModel;
@interface NEHTTPModelManager : NSObject
{
#if FMDB_SQLCipher
FMDatabaseQueue *sqliteDatabase;
#endif
NSMutableArray *allRequests;
BOOL enablePersistent;
}
Expand Down
8 changes: 8 additions & 0 deletions NetworkEye/NetworkEye/NEHTTPModelManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,19 @@
#import "NEHTTPModel.h"
#if FMDB_SQLCipher
#include "sqlite3.h"
#import "FMDB.h"
#endif
#define kSTRDoubleMarks @"\""
#define kSQLDoubleMarks @"\"\""
#define kSTRShortMarks @"'"
#define kSQLShortMarks @"''"
@interface NEHTTPModelManager(){
#if FMDB_SQLCipher
FMDatabaseQueue *sqliteDatabase;
#endif

}
@end

@implementation NEHTTPModelManager

Expand Down

0 comments on commit 614a8df

Please sign in to comment.