##// END OF EJS Templates
Table model data example
Table model data example

File last commit:

r519:987444b37af4
r519:987444b37af4
Show More
main.cpp
11 lines | 184 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "tablewidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
TableWidget w;
w.show();
return a.exec();
}