Commit 035bfe0a authored by Dominik Charousset's avatar Dominik Charousset

Add new settings type alias

parent 23c12a3e
......@@ -175,6 +175,7 @@ using ip_subnet = ipv6_subnet;
using stream_slot = uint16_t;
using config_value_map = dictionary<dictionary<config_value>>;
using settings = dictionary<config_value>;
// -- functions ----------------------------------------------------------------
......
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#pragma once
#include "caf/config_value.hpp"
#include "caf/dictionary.hpp"
namespace caf {
/// Software options stored as key-value pairs.
/// @relates config_value
using settings = dictionary<config_value>;
} // namespace caf
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment