view include/cache.h @ 31:fbe6bce63f2a v2.3

Added tag v2.4 for changeset e4d585cbd172
author pyon@macmini
date Sun, 06 Nov 2011 14:49:19 +0900
parents a2dd16b70c08
children
line wrap: on
line source

// Filename   : cache.h
// Last Change: 01-Nov-2011.
//
#ifndef __cache__
#define __cache__

class CacheItem
{
public:
    wxString filename;  // key
    wxString fullpath; 
    wxString modtime;
    float    z;
    long     l;
    bool     marksheet;
    wxBitmap thumbnail;
    wxBitmap selthumbnail;
    bool     exists;
};

#endif // __cache__