view include/cache.h @ 11:9b0840b0be7e

cache done.
author pyon@macmini
date Sun, 23 Oct 2011 07:43:34 +0900
parents 1fda3a06c39b
children 6ed3b64ed39a
line wrap: on
line source

// Filename   : cache.h
// Last Change: 22-Oct-2011.
//
#ifndef __cache__
#define __cache__

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


#endif // __cache__