mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
18 lines
422 B
C++
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();
|
|
}
|