mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
d35aa31584
started to add example for user-interactions in JKQTPlotter
14 lines
202 B
C++
14 lines
202 B
C++
#include <QApplication>
|
|
#include "test_user_interaction.h"
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
TestUserInteraction win;
|
|
win.show();
|
|
|
|
return app.exec();
|
|
}
|