diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-07 03:36:21 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-07 03:36:21 +0300 |
commit | 00863566ec4601c65c435b74e575d49546a1c707 (patch) | |
tree | 479a0a6e96aba8191c7a65ea9bee2f4d5e3a4aba /server/main/server.cpp | |
parent | add stress_test.py (diff) | |
download | math-server-00863566ec4601c65c435b74e575d49546a1c707.tar.gz math-server-00863566ec4601c65c435b74e575d49546a1c707.zip |
split server into multiple components
In a vague attempt to make header files more readable, split server/
into a number of components.
Also, refactor the unit tests to use the "Data-driven test cases" of
Boost.Test.
Diffstat (limited to '')
-rw-r--r-- | server/main/server.cpp (renamed from server/server.cpp) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/server.cpp b/server/main/server.cpp index 4dc672c..3800144 100644 --- a/server/server.cpp +++ b/server/main/server.cpp @@ -1,10 +1,11 @@ -#include "error.hpp" -#include "log.hpp" #include "server.hpp" #include "session.hpp" #include "session_manager.hpp" #include "settings.hpp" +#include "../common/error.hpp" +#include "../common/log.hpp" + #include <boost/asio.hpp> #include <boost/system/error_code.hpp> #include <boost/system/system_error.hpp> |