Move config class to its own dir

This commit is contained in:
Michael 2019-06-24 00:21:07 +01:00
parent 52314d81fa
commit 00c237dc6d
No known key found for this signature in database
GPG Key ID: 2D51757B47E2434C
6 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
#include <config.hpp> // for ensure_config
#include <config/config.hpp> // for ensure_config
#include <llarp.h>
#include <util/fs.hpp>
#include <util/logger.hpp>
#include <signal.h>
#include <csignal>
#if !defined(_WIN32) && !defined(__OpenBSD__)
#include <wordexp.h>

View File

@ -125,7 +125,7 @@ set(DNSLIB_SRC
set(LIB_SRC
${DNSLIB_SRC}
config.cpp
config/config.cpp
context.cpp
crypto/constants.cpp
crypto/crypto_libsodium.cpp

View File

@ -1,4 +1,4 @@
#include <config.hpp>
#include <config/config.hpp>
#include <constants/defaults.hpp>
#include <net/net.hpp>

View File

@ -1,7 +1,7 @@
#include <llarp.hpp>
#include <llarp.h>
#include <config.hpp>
#include <config/config.hpp>
#include <crypto/crypto_libsodium.hpp>
#include <crypto/crypto_noop.hpp>
#include <dht/context.hpp>

View File

@ -1,6 +1,6 @@
#include <router/router.hpp>
#include <config.hpp>
#include <config/config.hpp>
#include <constants/proto.hpp>
#include <crypto/crypto.hpp>
#include <crypto/crypto_libsodium.hpp>