view include/cache.h @ 36:73116df23be8 v2.4

Added tag v2.6 for changeset 405e08552527
author pyon@macmini
date Fri, 18 Nov 2011 20:45:39 +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__