git-svn-id: svn://db.shs.com.ru/libs@221 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2017-05-16 14:16:43 +00:00
parent 2e3f59a994
commit 2842826816
150 changed files with 762 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <QApplication>
#include "piintrospector.h"
int main(int argc, char * argv[]) {
QApplication a(argc, argv);
QPIIntrospector w;
w.show();
return a.exec();
}