Mobile API Reference  MicroStrategy 2019
ReportInfo.h
Go to the documentation of this file.
1 //
2 // ReportInfo.h
3 // MSTR Foundation
4 //
5 // Created by Amirali Charania on 2/20/09.
6 // Copyright 2009 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "MSIReportDisplayInfo.h"
11 #import "CacheInfo.h"
12 //#import "ReportCacheMap.h"
13 
14 @class ReportCacheMap, CacheIDMap;
15 
17 @private
18  ReportCacheMap* cacheMap;
19  BOOL readCacheInfoEntries;
20  CacheIDMap* cacheIDToFilenameMap;
21  //The cache set path of the last successfully saved cache item
22  //We compare it with the cache set path of the cache item being
23  //saved. If they are equal then we know that the corresponding
24  //folder exists.
25  NSString* cacheSetPath;
26 }
27 
28 // internal methods meant for report store usage
29 -(void)populate:(NSData*)xmlData omitCacheInfo:(BOOL)omitCacheInfo;
30 
31 // Class level methods...
32 +(void)deleteAllReportCachesDir;
33 
34 @end
signed char BOOL
Definition: PDCwtypes.h:101
Definition: MSIReportDisplayInfo.h:91
Definition: ReportInfo.h:16