27 lines
460 B
Objective-C
27 lines
460 B
Objective-C
//
|
|
// TLDBManager.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/3/13.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <FMDB/FMDB.h>
|
|
|
|
@interface TLDBManager : NSObject
|
|
|
|
/**
|
|
* DB队列(除IM相关)
|
|
*/
|
|
@property (nonatomic, strong) FMDatabaseQueue *commonQueue;
|
|
|
|
/**
|
|
* 与IM相关的DB队列
|
|
*/
|
|
@property (nonatomic, strong) FMDatabaseQueue *messageQueue;
|
|
|
|
+ (TLDBManager *)sharedInstance;
|
|
|
|
@end
|