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.1 1997/08/06 15:05:42 hanord Exp $ ** ** Definition of QPixmapCache class ** ** Created : 950501 ** ** Copyright (C) 1995-1997 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