engine/inc/PodcastModel.h
branch3rded
changeset 176 1c8b56cb6409
parent 90 d0c0c3e6f7a1
child 390 d7abecc9d189
equal deleted inserted replaced
175:cd124c4eb6b9 176:1c8b56cb6409
    22 #include <eikenv.h>
    22 #include <eikenv.h>
    23 #include <commdb.h>
    23 #include <commdb.h>
    24 #include <CommDbConnPref.h>
    24 #include <CommDbConnPref.h>
    25 #include <es_sock.h>
    25 #include <es_sock.h>
    26 #include <http/rhttpsession.h>
    26 #include <http/rhttpsession.h>
    27 #include <cmmanager.h>
    27 //#include <cmmanager.h>
    28 #include <aknserverapp.h>  // MAknServerAppExitObserver
    28 #include <aknserverapp.h>  // MAknServerAppExitObserver
    29 #include <DocumentHandler.h>
    29 #include <DocumentHandler.h>
    30 
    30 
    31 #include "FeedInfo.h"
    31 #include "FeedInfo.h"
    32 #include "ShowInfo.h"
    32 #include "ShowInfo.h"
    33 #include "debug.h"
    33 #include "debug.h"
    34 #include <sqlite3.h>
    34 #include "sqlite3.h"
    35 #include "ImageHandler.h"
    35 #include "ImageHandler.h"
    36 
    36 
    37 // SQLite leaks memory when sorting, so to test our own memory leaks we need to disable this
    37 // SQLite leaks memory when sorting, so to test our own memory leaks we need to disable this
    38 //#define DONT_SORT_SQL
    38 //#define DONT_SORT_SQL
    39 class RCmManager;
    39 class RCmManager;
   131    RArray<TPodcastIAPItem> iSNAPIdArray;
   131    RArray<TPodcastIAPItem> iSNAPIdArray;
   132    CDesCArrayFlat* iSNAPNameArray;
   132    CDesCArrayFlat* iSNAPNameArray;
   133    CCommsDatabase* iCommDB;  
   133    CCommsDatabase* iCommDB;  
   134    
   134    
   135    sqlite3* iDB;
   135    sqlite3* iDB;
   136    RCmManager iCmManager;
   136 //   RCmManager iCmManager;
   137    TBool iIsFirstStartup;
   137    TBool iIsFirstStartup;
   138    CImageHandler* iImageHandler;
   138    CImageHandler* iImageHandler;
   139    CDocumentHandler* iDocHandler;
   139    CDocumentHandler* iDocHandler;
   140 };
   140 };
   141 
   141