Mercurial > mercurial > hgweb_mover2.cgi
comparison include/cache.h @ 12:6ed3b64ed39a
finish 'UpdateListImage'.
author | pyon@macmini |
---|---|
date | Sun, 23 Oct 2011 20:29:33 +0900 |
parents | 9b0840b0be7e |
children | a2dd16b70c08 |
comparison
equal
deleted
inserted
replaced
11:9b0840b0be7e | 12:6ed3b64ed39a |
---|---|
1 // Filename : cache.h | 1 // Filename : cache.h |
2 // Last Change: 22-Oct-2011. | 2 // Last Change: 23-Oct-2011. |
3 // | 3 // |
4 #ifndef __cache__ | 4 #ifndef __cache__ |
5 #define __cache__ | 5 #define __cache__ |
6 | 6 |
7 class CacheItem | 7 class CacheItem |
8 { | 8 { |
9 public: | 9 public: |
10 wxString filename; // key | 10 wxString filename; // key |
11 wxString fullpathname; | 11 wxString fullpath; |
12 wxString modtime; | 12 wxString modtime; |
13 float z; | 13 float z; |
14 long l; | 14 long l; |
15 bool marksheet; | 15 bool marksheet; |
16 wxBitmap thumbnail; | 16 wxBitmap thumbnail; |
17 bool exists; | 17 bool exists; |
18 }; | 18 }; |
19 | 19 |
20 | |
21 #endif // __cache__ | 20 #endif // __cache__ |
22 | 21 |