1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef SAVERLIST_H #define SAVERLIST_H #include <tqptrlist.h> #include "saverconfig.h" class SaverList : public TQPtrList<SaverConfig> { protected: virtual int compareItems(TQPtrCollection::Item item1, TQPtrCollection::Item item2); }; #endif