view include/cache.h @ 23:a2dd16b70c08 v2.2dev

apply vivid-coloured image for selected item.
author pyon@macmini
date Tue, 01 Nov 2011 22:26:41 +0900
parents 6ed3b64ed39a
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__