Files
GoldenCheetah/qwt/examples/many_axes/many_axes.cpp
2009-09-20 11:09:19 -07:00

18 lines
422 B
C++

#include <qapplication.h>
#include "mainwindow.h"
//-----------------------------------------------------------------
// many_axes.cpp
//
// An example that demonstrates a plot with many axes.
//-----------------------------------------------------------------
int main(int argc, char **argv)
{
QApplication a(argc, argv);
MainWindow mainWindow;
mainWindow.show();
return a.exec();
}