comparison Applications/Generic/BasicNativeApplication.h @ 274:dc1beee33134 am-2

split SdlApplication into NativeApplication and SdlApplication
author am@osimis.io
date Fri, 24 Aug 2018 13:52:55 +0200
parents
children 5de5699ad570
comparison
equal deleted inserted replaced
273:f21ba2468570 274:dc1beee33134
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-2018 Osimis S.A., 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 #pragma once
23
24 #include "../IBasicApplication.h"
25
26 #if ORTHANC_ENABLE_NATIVE != 1
27 #error this file shall be included only with the ORTHANC_ENABLE_NATIVE set to 1
28 #endif
29
30 namespace OrthancStone
31 {
32 class BasicNativeApplicationContext;
33
34 class BasicNativeApplication
35 {
36 public:
37
38 int Execute(MessageBroker& broker,
39 IBasicApplication& application,
40 int argc,
41 char* argv[]);
42
43 virtual void Initialize() = 0;
44 virtual void DeclareCommandLineOptions(boost::program_options::options_description& options) = 0;
45 virtual void Run(BasicNativeApplicationContext& context, const std::string& title, unsigned int width, unsigned int height, bool enableOpenGl) = 0;
46 virtual void Finalize() = 0;
47 };
48
49 }