This is the verbatim text of the qpmcache.h include file. It is is provided only for illustration; the copyright remains with Troll Tech
/**************************************************************************** ** $Id: qpmcache.h,v 2.0 1996/09/24 10:15:58 agulbra Exp $ ** ** Definition of QPixmapCache class ** ** Created : 950501 ** ** Copyright (C) 1995-1996 by Troll Tech AS. All rights reserved. ** *****************************************************************************/ #ifndef QPMCACHE_H #define QPMCACHE_H #include "qpixmap.h" class QPixmapCache // global pixmap cache { public: static int cacheLimit(); static void setCacheLimit( int ); static QPixmap *find( const char *key ); static bool insert( const char *key, QPixmap * ); static void clear(); }; #endif // QPMCACHE_H