annotate include/cache.h @ 12:6ed3b64ed39a
finish 'UpdateListImage'.
author |
pyon@macmini |
date |
Sun, 23 Oct 2011 20:29:33 +0900 |
parents |
9b0840b0be7e |
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
|