annotate include/cache.h @ 14:f871fd3085e9
default v2.2dev
Added tag v2.1 for changeset df439f9831d2
author |
pyon@macmini |
date |
Sun, 23 Oct 2011 20:53:47 +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
|