annotate include/cache.h @ 16:e60175dc675e
v2.1
Added tag 13, v2.1 for changeset df439f9831d2
author |
pyon@macmini |
date |
Sun, 23 Oct 2011 21:33:02 +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
|