comparison Applications/Samples/SampleMainWasm.cpp @ 253:8ff70c04c6df am-2

IObservable/IObserver now working in WASM too
author am@osimis.io
date Tue, 03 Jul 2018 10:48:47 +0200
parents 092db46c6291
children 3c190e2bb3af
comparison
equal deleted inserted replaced
252:40b21c1f8b8d 253:8ff70c04c6df
24 #include <emscripten/emscripten.h> 24 #include <emscripten/emscripten.h>
25 25
26 #include "SampleList.h" 26 #include "SampleList.h"
27 27
28 28
29 OrthancStone::IBasicApplication* CreateUserApplication() { 29 OrthancStone::IBasicApplication* CreateUserApplication(OrthancStone::MessageBroker& broker) {
30 30
31 return new Application(); 31 return new Application(broker);
32 } 32 }