6 #include <qstringlist.h>
8 class objFinder
: public QObject
{
15 static void insert(QObject
*obj
, const char *key
= 0);
16 static QObject
*find(const char *name
, const char *inherits
);
17 static void dumpTree();
18 static QStringList
allObjects();
21 void inserted(QObject
*obj
);
28 * Don't allow the object to be created, all it's members are static
31 static QString
randString();
34 static Q3Dict
<QObject
> *objList
;
38 extern objFinder
*objFind
;