mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-03 12:10:57 -06:00
df5f1f85af
AppFwk tests. Added rotation to locator. Caf::FrameAnimationControl : Set current frame to 0 if a framecount change makes the current frame invalid
16 lines
266 B
C++
16 lines
266 B
C++
|
|
#include "MainWindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow window;
|
|
window.setWindowTitle("Ceetron Application Framework Test Application");
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|