Mercurial > mercurial > hgweb_mover2.cgi
annotate include/cache.h @ 19:868ccd73e238 v2.2dev
directory viewer
author | pyon@macmini |
---|---|
date | Tue, 25 Oct 2011 07:48:39 +0900 |
parents | 6ed3b64ed39a |
children | a2dd16b70c08 |
rev | line source |
---|---|
10 | 1 // Filename : cache.h |
12 | 2 // Last Change: 23-Oct-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; |
11 | 17 bool exists; |
10 | 18 }; |
19 | |
20 #endif // __cache__ | |
21 |