Mercurial > mercurial > hgweb_mover2.cgi
annotate include/cache.h @ 11:9b0840b0be7e
cache done.
author | pyon@macmini |
---|---|
date | Sun, 23 Oct 2011 07:43:34 +0900 |
parents | 1fda3a06c39b |
children | 6ed3b64ed39a |
rev | line source |
---|---|
10 | 1 // Filename : cache.h |
11 | 2 // Last Change: 22-Oct-2011. |
10 | 3 // |
4 #ifndef __cache__ | |
5 #define __cache__ | |
6 | |
7 class CacheItem | |
8 { | |
9 public: | |
10 wxString filename; // key | |
11 wxString fullpathname; | |
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 | |
21 #endif // __cache__ | |
22 |