##// END OF EJS Templates
Added static plugin support...
Added static plugin support In case of fully static exe even plugins must be static to allow single file executable. Small fix, when using resources in app from library they must be initialized with Q_INIT_RESOURCE. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1093:cee2ad93ade9
r1123:247dc18789c6
Show More
CatalogueExplorer.h
21 lines | 392 B | text/x-c | CLexer
#ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
#include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
private:
Ui::CatalogueExplorer *ui;
};
#endif // SCIQLOP_CATALOGUEEXPLORER_H