Mercurial > mercurial > hgweb_mover2.cgi
annotate include/cache.h @ 40:ce5b61376fd0 v2.7 tip
complete dirview.
author | pyon@macmini |
---|---|
date | Fri, 25 Nov 2011 22:08:47 +0900 |
parents | a2dd16b70c08 |
children |
rev | line source |
---|---|
10 | 1 // Filename : cache.h |
23 | 2 // Last Change: 01-Nov-2011. |
10 | 3 // |
4 #ifndef __cache__ | |
5 #define __cache__ | |
6 | |
7 class CacheItem | |
8 { | |
9 public: | |
10 wxString filename; // key | |
12 | 11 wxString fullpath; |
11 | 12 wxString modtime; |
13 float z; | |
14 long l; | |
15 bool marksheet; | |
10 | 16 wxBitmap thumbnail; |
23 | 17 wxBitmap selthumbnail; |
11 | 18 bool exists; |
10 | 19 }; |
20 | |
21 #endif // __cache__ | |
22 |