comparison OrthancStone/Sources/Platforms/WebAssembly/WebAssemblyOracle.h @ 1901:184b0aeae1af

fix build of sdl
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 29 Jan 2022 16:55:14 +0100
parents 917500c46fe0
children 07964689cb0b
comparison
equal deleted inserted replaced
1900:563f6aa8e24c 1901:184b0aeae1af
21 **/ 21 **/
22 22
23 23
24 #pragma once 24 #pragma once
25 25
26 #include "../../../OrthancStone/Sources/OrthancStone.h" 26 #include "../../OrthancStone.h"
27 27
28 #if !defined(ORTHANC_ENABLE_WASM) 28 #if !defined(ORTHANC_ENABLE_WASM)
29 # error The macro ORTHANC_ENABLE_WASM must be defined 29 # error The macro ORTHANC_ENABLE_WASM must be defined
30 #endif 30 #endif
31 31
32 #if ORTHANC_ENABLE_WASM != 1 32 #if ORTHANC_ENABLE_WASM != 1
33 # error This file can only compiled for WebAssembly 33 # error This file can only compiled for WebAssembly
34 #endif 34 #endif
35 35
36 #include "../../../OrthancStone/Sources/Messages/IObservable.h" 36 #include "../../Messages/IObservable.h"
37 #include "../../../OrthancStone/Sources/Messages/IMessageEmitter.h" 37 #include "../../Messages/IMessageEmitter.h"
38 #include "../../../OrthancStone/Sources/Oracle/IOracle.h" 38 #include "../../Oracle/IOracle.h"
39 39
40 #if ORTHANC_ENABLE_DCMTK == 1 40 #if ORTHANC_ENABLE_DCMTK == 1
41 # include "../../../OrthancStone/Sources/Toolbox/ParsedDicomCache.h" 41 # include "../../Toolbox/ParsedDicomCache.h"
42 #endif 42 #endif
43 43
44 #include <Compatibility.h> // For ORTHANC_OVERRIDE 44 #include <Compatibility.h> // For ORTHANC_OVERRIDE
45 #include <WebServiceParameters.h> 45 #include <WebServiceParameters.h>
46 46