| 12345678910111213141516 |
- //
- // HistoryData.h
- // Apex Mobile
- //
- // Created by Ray on 14-4-24.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <sqlite3.h>
- #import "ApexMobileDB.h"
- #import "ApexMobileAppDelegate.h"
- @interface HistoryData : NSObject
- @property (strong,nonatomic) NSMutableArray* pagedata;
- -(long) get_count;
- @end
|