Skip to content

Commit

Permalink
Move implementation to details dir
Browse files Browse the repository at this point in the history
  • Loading branch information
eoan-ermine committed Mar 22, 2024
1 parent 6ee5ccb commit 75ccedd
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/packets_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../tftp_common/packets.hpp"
#include "../tftp_common/details/packets.hpp"
#include <gtest/gtest.h>

using namespace tftp_common::packets;
Expand Down
2 changes: 1 addition & 1 deletion tests/parse_test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "../tftp_common/parsers.hpp"
#include "../tftp_common/details/parsers.hpp"
#include <gtest/gtest.h>

using namespace tftp_common::packets;
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tftp_common/tftp_common.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#include "packets.hpp"
#include "parsers.hpp"
#include "details/packets.hpp"
#include "details/parsers.hpp"

0 comments on commit 75ccedd

Please sign in to comment.