Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 89e44f535e830f712da845abf132b4d985254075 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2012 Draeger Medical GmbH (http://www.draeger.com).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Peter Karlitschek (initial contribution)
 *
 *******************************************************************************/

#ifndef SUBSYSTEMRUNNERBASE_H_
#define SUBSYSTEMRUNNERBASE_H_

#include "common/containers/String.h"

namespace etRuntime {

class SubSystemClassBase;

class SubSystemRunnerBase {
public:
	SubSystemRunnerBase();
	virtual ~SubSystemRunnerBase() {}
	static void run(SubSystemClassBase& mainComponent, int argc, char* argv[]);
	static void waitForTerminate();

protected:
	/**
	 * blocks until the String "quit" is entered on the console
	 */
	static void waitForQuit();

private:
	static const String OPTION_RUN_AS_TEST;
	static const String OPTION_RUN_HEADLESS;

	SubSystemRunnerBase(SubSystemRunnerBase const&);
	SubSystemRunnerBase& operator=(SubSystemRunnerBase const&);
};

} /* namespace etRuntime */
#endif /* SUBSYSTEMRUNNERBASE_H_ */

Back to the top