| 12345678910111213141516171819202122 |
- /******************************************************************************/
- #include "stdafx.h"
- /******************************************************************************/
- StoreFiles IC;
- /******************************************************************************/
- /******************************************************************************/
- void StoreFiles::init()
- {
- if(!initialized)
- {
- initialized=true;
- create("Bin/Store.dat", &WorkerThreads, null, COMPRESS_LZ4, 2);
- }
- }
- ImagePtr StoreFiles::getImage(C Str &url)
- {
- init(); return ::EE::InternetCache::getImage(url);
- }
- StoreFiles::StoreFiles() : initialized(false) {}
- /******************************************************************************/
|