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
397 B
27 lines
397 B
#ifndef TESTMANAGER_H
|
|
#define TESTMANAGER_H
|
|
|
|
#include <tqobject.h>
|
|
|
|
namespace Komposer {
|
|
class Plugin;
|
|
class PluginManager;
|
|
}
|
|
using Komposer::Plugin;
|
|
|
|
class TestManager : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestManager( TQObject *parent );
|
|
|
|
public slots:
|
|
void slotPluginLoaded( Plugin *plugin );
|
|
void slotAllPluginsLoaded();
|
|
private:
|
|
Komposer::PluginManager *m_manager;
|
|
};
|
|
|
|
#endif
|