view Applications/Samples/SimpleViewer/Qt/mainQt.cpp @ 837:847fd11384bc am-dev

don't forbid touchmove anymore at document level. It's a bit rough to re-enable it later i.e in components that needs it (SortableJS in my case).
author Alain Mazy <alain@mazy.be>
date Wed, 05 Jun 2019 17:43:59 +0200
parents daa04d15192c
children
line wrap: on
line source

#include "Applications/Qt/QtStoneApplicationRunner.h"

#include "../SimpleViewerApplication.h"
#include "Framework/Messages/MessageBroker.h"


int main(int argc, char* argv[]) 
{
  OrthancStone::MessageBroker broker;
  SimpleViewer::SimpleViewerApplication stoneApplication(broker);

  OrthancStone::QtStoneApplicationRunner qtAppRunner(broker, stoneApplication);
  return qtAppRunner.Execute(argc, argv);
}