00001 #include <QApplication> 00002 #include <QWidget> 00003 #include "PointMatcher.h" 00004 00005 class LAUPointMatcherWidget : public QWidget 00006 { 00007 //Q_OBJECT 00008 00009 public: 00010 //LAUPointMatcherWidget(QWidget *parent = 0) : QWidget(parent) { ; } 00011 //~LAUPointMatcherWidget(); 00012 00013 private: 00014 PointMatcher<float>::DataPoints::Label label; 00015 }; 00016 00017 int main(int argc, char *argv[]) 00018 { 00019 QApplication a(argc, argv); 00020 LAUPointMatcherWidget w; 00021 w.show(); 00022 00023 return a.exec(); 00024 } 00025