00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Mark Alexander 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: TIL_CacheManager.h (Tile Image Library, C++) 00015 * 00016 * COMMENTS: 00017 * Manager class for all tile access operations; manages the cache, 00018 * proxy and pool managers. 00019 */ 00020 #ifndef TIL_TILEMANAGER_H 00021 #define TIL_TILEMANAGER_H 00022 00023 #include "TIL_API.h" 00024 class TIL_TileCache; 00025 class TIL_ProxyManager; 00026 00027 class TIL_API TIL_TileManager 00028 { 00029 public: 00030 TIL_TileManager(); 00031 ~TIL_TileManager(); 00032 00033 TIL_TileCache *cache() { return myCache; } 00034 TIL_ProxyManager *proxy() { return myProxy; } 00035 00036 private: 00037 TIL_TileCache *myCache; 00038 TIL_ProxyManager *myProxy; 00039 }; 00040 00041 #endif
1.5.9