##// END OF EJS Templates
Refactor domain model...
Refactor domain model * rewrites doman hadnling to support better mulitaxis * rewrites zoom in zoom out handling * makes domain a qobject * adds domain unit test * updates chartdataset unit test * renames signlas and slots for domain handling

File last commit:

r198:d1d1af3adb63
r439:86afa1b4ff5f
Show More
main.cpp
18 lines | 369 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include <QMainWindow>
#include "multichartwidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MultiChartWidget *multi = new MultiChartWidget();
// Use the chart widget as the central widget
QMainWindow w;
w.resize(640, 480);
w.setCentralWidget(multi);
w.show();
return a.exec();
}