Mercurial > hg > orthanc-stone
annotate 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 |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
40
7207a407bcd8
shared copyright with osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
10
diff
changeset
|
5 * Copyright (C) 2017 Osimis, Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
47 | 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. | |
0 | 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 | |
47 | 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 | |
0 | 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 | |
10 | 25 #include "EmptyApplication.h" |
0 | 26 typedef OrthancStone::Samples::EmptyApplication Application; |
27 | |
28 #elif ORTHANC_STONE_SAMPLE == 2 | |
10 | 29 #include "TestPatternApplication.h" |
0 | 30 typedef OrthancStone::Samples::TestPatternApplication Application; |
31 | |
32 #elif ORTHANC_STONE_SAMPLE == 3 | |
10 | 33 #include "SingleFrameApplication.h" |
0 | 34 typedef OrthancStone::Samples::SingleFrameApplication Application; |
35 | |
36 #elif ORTHANC_STONE_SAMPLE == 4 | |
10 | 37 #include "SingleVolumeApplication.h" |
0 | 38 typedef OrthancStone::Samples::SingleVolumeApplication Application; |
39 | |
40 #elif ORTHANC_STONE_SAMPLE == 5 | |
10 | 41 #include "BasicPetCtFusionApplication.h" |
0 | 42 typedef OrthancStone::Samples::BasicPetCtFusionApplication Application; |
43 | |
44 #elif ORTHANC_STONE_SAMPLE == 6 | |
10 | 45 #include "SynchronizedSeriesApplication.h" |
0 | 46 typedef OrthancStone::Samples::SynchronizedSeriesApplication Application; |
47 | |
48 #elif ORTHANC_STONE_SAMPLE == 7 | |
10 | 49 #include "LayoutPetCtFusionApplication.h" |
0 | 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 } |