comparison utilities/widgettest/widgettest.cpp @ 28:7d8a6167febb classical-rdf

* Begin new text entry / search widget & test utility for it * Improve typing matching methods * Update code to use ObjectLoader/Storer instead of old-style ObjectMapper
author Chris Cannam
date Mon, 01 Mar 2010 16:51:14 +0000
parents
children 8bed05455706
comparison
equal deleted inserted replaced
27:e8160a2d8b28 28:7d8a6167febb
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 #include "TypingSelectWidget.h"
4
5 #include <QApplication>
6
7 using namespace ClassicalData;
8
9 int
10 main(int argc, char **argv)
11 {
12 QApplication app(argc, argv);
13
14 TypingSelectWidget *w = new TypingSelectWidget();
15
16 w->show();
17
18 app.exec();
19 }
20