QtProAddFileHelper/main.cpp

20 lines
354 B
C++

/**
* @author Rick Chan (cy187lion@sina.com)
* @date 2014-01-23
*/
#include "qtproaddfilehelper.h"
#include <QApplication>
int main(int argc, char *argv[])
{
#ifndef QT_DEBUG
QApplication::setLibraryPaths(QStringList("./plugins/"));
#endif
QApplication a(argc, argv);
QtProAddFileHelper w;
w.show();
return a.exec();
}