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/session.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/session.cpp (renamed from server/session.cpp) | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/session.cpp b/server/main/session.cpp index 409ca5a..0ee7f75 100644 --- a/server/session.cpp +++ b/server/main/session.cpp @@ -1,9 +1,10 @@ -#include "error.hpp" -#include "log.hpp" -#include "parser.hpp" #include "session.hpp" #include "session_manager.hpp" +#include "../common/error.hpp" +#include "../common/log.hpp" +#include "../parser/parser.hpp" + #include <boost/asio.hpp> #include <boost/lexical_cast.hpp> #include <boost/system/error_code.hpp> |