// HQDeleter.h - public interface of the
HOOPS/Qt class HQDeleter
// More about this class #ifndef HQDELETER_H
// Qt inlcudes
class HQDeleter:
public QObject
public: HQDeleter(QObject
* parent=0, const char * name=0);
void processDeletes();
bool event(QEvent * e); public slots: void detectOtherDelete(); private: QIntDict<QObject> *objects; };
#endif
|