mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
44 lines
804 B
C++
44 lines
804 B
C++
/*
|
|
* \brief Sandbox verbosity
|
|
* \author Norman Feske
|
|
* \date 2017-01-03
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _LIB__SANDBOX__VERBOSE_H_
|
|
#define _LIB__SANDBOX__VERBOSE_H_
|
|
|
|
/* Genode includes */
|
|
#include <util/noncopyable.h>
|
|
#include <util/xml_node.h>
|
|
|
|
/* local includes */
|
|
#include <sandbox/types.h>
|
|
|
|
namespace Sandbox { struct Verbose; }
|
|
|
|
|
|
class Sandbox::Verbose : Genode::Noncopyable
|
|
{
|
|
private:
|
|
|
|
bool _enabled = false;
|
|
|
|
public:
|
|
|
|
Verbose() { }
|
|
|
|
Verbose(Xml_node const &config)
|
|
: _enabled(config.attribute_value("verbose", false)) { }
|
|
|
|
bool enabled() const { return _enabled; }
|
|
};
|
|
|
|
#endif /* _LIB__SANDBOX__VERBOSE_H_ */
|