Mercurial > hg > orthanc-stone
comparison Applications/Samples/SampleMainSdl.cpp @ 51:b340879da9bd
reorganization
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Apr 2017 14:50:20 +0200 |
parents | Samples/SampleMainSdl.cpp@28956ed68280 |
children | 4cff7b1ed31d |
comparison
equal
deleted
inserted
replaced
49:c45f368de5c0 | 51:b340879da9bd |
---|---|
1 /** | |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017 Osimis, Belgium | |
6 * | |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 // The macro "ORTHANC_STONE_SAMPLE" must be set by the CMake script | |
23 | |
24 #if ORTHANC_STONE_SAMPLE == 1 | |
25 #include "EmptyApplication.h" | |
26 typedef OrthancStone::Samples::EmptyApplication Application; | |
27 | |
28 #elif ORTHANC_STONE_SAMPLE == 2 | |
29 #include "TestPatternApplication.h" | |
30 typedef OrthancStone::Samples::TestPatternApplication Application; | |
31 | |
32 #elif ORTHANC_STONE_SAMPLE == 3 | |
33 #include "SingleFrameApplication.h" | |
34 typedef OrthancStone::Samples::SingleFrameApplication Application; | |
35 | |
36 #elif ORTHANC_STONE_SAMPLE == 4 | |
37 #include "SingleVolumeApplication.h" | |
38 typedef OrthancStone::Samples::SingleVolumeApplication Application; | |
39 | |
40 #elif ORTHANC_STONE_SAMPLE == 5 | |
41 #include "BasicPetCtFusionApplication.h" | |
42 typedef OrthancStone::Samples::BasicPetCtFusionApplication Application; | |
43 | |
44 #elif ORTHANC_STONE_SAMPLE == 6 | |
45 #include "SynchronizedSeriesApplication.h" | |
46 typedef OrthancStone::Samples::SynchronizedSeriesApplication Application; | |
47 | |
48 #elif ORTHANC_STONE_SAMPLE == 7 | |
49 #include "LayoutPetCtFusionApplication.h" | |
50 typedef OrthancStone::Samples::LayoutPetCtFusionApplication Application; | |
51 | |
52 #else | |
53 #error Please set the ORTHANC_STONE_SAMPLE macro | |
54 #endif | |
55 | |
56 | |
57 int main(int argc, char* argv[]) | |
58 { | |
59 Application application; | |
60 | |
61 return OrthancStone::IBasicApplication::ExecuteWithSdl(application, argc, argv); | |
62 } |