blob: 8d43db664262ff594cabf05a4d71c12fb08f4e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PLUGINLOADER_H
#define PLUGINLOADER_H
#include <object.h>
#include <qstring.h>
namespace PluginLoader
{
ObjectList *loadAll();
Object *load(const QString &);
}
#endif
|