diff --git a/tests/packets_test.cpp b/tests/packets_test.cpp index 0e90ea1..9106755 100644 --- a/tests/packets_test.cpp +++ b/tests/packets_test.cpp @@ -1,4 +1,4 @@ -#include "../tftp_common/packets.hpp" +#include "../tftp_common/details/packets.hpp" #include using namespace tftp_common::packets; diff --git a/tests/parse_test.cpp b/tests/parse_test.cpp index 73d6f2d..5f8b6be 100644 --- a/tests/parse_test.cpp +++ b/tests/parse_test.cpp @@ -1,4 +1,4 @@ -#include "../tftp_common/parsers.hpp" +#include "../tftp_common/details/parsers.hpp" #include using namespace tftp_common::packets; diff --git a/tftp_common/packets.hpp b/tftp_common/details/packets.hpp similarity index 100% rename from tftp_common/packets.hpp rename to tftp_common/details/packets.hpp diff --git a/tftp_common/parsers.hpp b/tftp_common/details/parsers.hpp similarity index 100% rename from tftp_common/parsers.hpp rename to tftp_common/details/parsers.hpp diff --git a/tftp_common/tftp_common.hpp b/tftp_common/tftp_common.hpp index 417efc2..481bd14 100644 --- a/tftp_common/tftp_common.hpp +++ b/tftp_common/tftp_common.hpp @@ -1,4 +1,4 @@ #pragma once -#include "packets.hpp" -#include "parsers.hpp" +#include "details/packets.hpp" +#include "details/parsers.hpp"