genode/repos/demo/src/app/scout/launcher_config.h
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

41 lines
809 B
C++

/*
* \brief Genode-specific Launcher support
* \author Norman Feske
* \date 2009-08-25
*
* The generic Scout code uses the 'Launcher_config' as an opaque type.
*/
/*
* Copyright (C) 2009-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _LAUNCHER_CONFIG_
#define _LAUNCHER_CONFIG_
#include <dataspace/capability.h>
namespace Scout { class Launcher_config; }
class Scout::Launcher_config
{
private:
Genode::Dataspace_capability _config_ds;
public:
/**
* Constructor
*/
Launcher_config(Genode::Dataspace_capability config_ds)
: _config_ds(config_ds) { }
Genode::Dataspace_capability config_ds() { return _config_ds; }
};
#endif /* _LAUNCHER_CONFIG_ */