mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Reorganize source files
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
#define RIPPLE_BASICS_BASICCONFIG_H_INCLUDED
|
||||
|
||||
#include <ripple/basics/contract.h>
|
||||
#include <beast/unit_test/const_container.h>
|
||||
#include <beast/ci_char_traits.h>
|
||||
#include <beast/detail/const_container.hpp>
|
||||
#include <beast/detail/ci_char_traits.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/optional.hpp>
|
||||
#include <map>
|
||||
@@ -40,8 +40,8 @@ using IniFileSections = std::map<std::string, std::vector<std::string>>;
|
||||
A configuration file contains zero or more sections.
|
||||
*/
|
||||
class Section
|
||||
: public beast::const_container <
|
||||
std::map <std::string, std::string, beast::ci_less>>
|
||||
: public beast::detail::const_container <
|
||||
std::map <std::string, std::string, beast::detail::ci_less>>
|
||||
{
|
||||
private:
|
||||
std::string name_;
|
||||
@@ -165,7 +165,7 @@ public:
|
||||
class BasicConfig
|
||||
{
|
||||
private:
|
||||
std::map <std::string, Section, beast::ci_less> map_;
|
||||
std::map <std::string, Section, beast::detail::ci_less> map_;
|
||||
|
||||
public:
|
||||
/** Returns `true` if a section with the given name exists. */
|
||||
|
||||
Reference in New Issue
Block a user