You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
406 B
27 lines
406 B
15 years ago
|
#ifndef TESTMANAGER_H
|
||
|
#define TESTMANAGER_H
|
||
|
|
||
15 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
|
||
|
namespace Komposer {
|
||
|
class Plugin;
|
||
|
class PluginManager;
|
||
|
}
|
||
|
using Komposer::Plugin;
|
||
|
|
||
14 years ago
|
class TestManager : public TQObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
14 years ago
|
TQ_OBJECT
|
||
15 years ago
|
public:
|
||
14 years ago
|
TestManager( TQObject *parent );
|
||
15 years ago
|
|
||
|
public slots:
|
||
|
void slotPluginLoaded( Plugin *plugin );
|
||
|
void slotAllPluginsLoaded();
|
||
|
private:
|
||
|
Komposer::PluginManager *m_manager;
|
||
|
};
|
||
|
|
||
|
#endif
|