diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 12:17:01 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 12:17:01 +0300 |
commit | 1a3bf05144711529a1bc8fa6cec3091d70c5b1ab (patch) | |
tree | 9cdf9b912083682d7c90a26e5a416c9659e89867 | |
parent | update cmake-common (diff) | |
download | math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.tar.gz math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.zip |
add licensing notes to source files
Diffstat (limited to '')
30 files changed, 150 insertions, 0 deletions
diff --git a/client/client.hpp b/client/client.hpp index 139ebb2..2f917c1 100644 --- a/client/client.hpp +++ b/client/client.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "input.hpp" diff --git a/client/error.hpp b/client/error.hpp index 98e1305..2ae0075 100644 --- a/client/error.hpp +++ b/client/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <stdexcept> diff --git a/client/input.hpp b/client/input.hpp index 077d5c7..9c22b03 100644 --- a/client/input.hpp +++ b/client/input.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/client/main.cpp b/client/main.cpp index cfe5026..a375d38 100644 --- a/client/main.cpp +++ b/client/main.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "client.hpp" #include "settings.hpp" diff --git a/client/settings.hpp b/client/settings.hpp index 5c2522e..25f230b 100644 --- a/client/settings.hpp +++ b/client/settings.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "transport.hpp" diff --git a/client/transport.hpp b/client/transport.hpp index 6311edd..04e6c4b 100644 --- a/client/transport.hpp +++ b/client/transport.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/server/common/error.hpp b/server/common/error.hpp index cbfbb1e..bdcbd43 100644 --- a/server/common/error.hpp +++ b/server/common/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <stdexcept> diff --git a/server/common/log.hpp b/server/common/log.hpp index 48dd0f6..5b61c58 100644 --- a/server/common/log.hpp +++ b/server/common/log.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <boost/date_time/posix_time/posix_time.hpp> diff --git a/server/lexer/error.hpp b/server/lexer/error.hpp index 99944c7..ae6828d 100644 --- a/server/lexer/error.hpp +++ b/server/lexer/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "../common/error.hpp" diff --git a/server/lexer/input.hpp b/server/lexer/input.hpp index 1104a4b..7cf25ec 100644 --- a/server/lexer/input.hpp +++ b/server/lexer/input.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/server/lexer/lexer.cpp b/server/lexer/lexer.cpp index 808fba3..24e3f14 100644 --- a/server/lexer/lexer.cpp +++ b/server/lexer/lexer.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "error.hpp" #include "lexer.hpp" #include "token.hpp" diff --git a/server/lexer/lexer.hpp b/server/lexer/lexer.hpp index d08a2df..44831d8 100644 --- a/server/lexer/lexer.hpp +++ b/server/lexer/lexer.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "input.hpp" diff --git a/server/lexer/token.cpp b/server/lexer/token.cpp index 6ffb721..79c3a63 100644 --- a/server/lexer/token.cpp +++ b/server/lexer/token.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "error.hpp" #include "token.hpp" #include "token_type.hpp" diff --git a/server/lexer/token.hpp b/server/lexer/token.hpp index 6f98383..f351d02 100644 --- a/server/lexer/token.hpp +++ b/server/lexer/token.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "token_type.hpp" diff --git a/server/lexer/token_type.cpp b/server/lexer/token_type.cpp index 9a69ba1..cafb403 100644 --- a/server/lexer/token_type.cpp +++ b/server/lexer/token_type.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "error.hpp" #include "token_type.hpp" diff --git a/server/lexer/token_type.hpp b/server/lexer/token_type.hpp index 9489915..fba2abb 100644 --- a/server/lexer/token_type.hpp +++ b/server/lexer/token_type.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <ostream> diff --git a/server/main/main.cpp b/server/main/main.cpp index 2cf6d35..85f1255 100644 --- a/server/main/main.cpp +++ b/server/main/main.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "server.hpp" #include "settings.hpp" diff --git a/server/main/server.cpp b/server/main/server.cpp index faeebf1..aef7d00 100644 --- a/server/main/server.cpp +++ b/server/main/server.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "server.hpp" #include "session.hpp" #include "session_manager.hpp" diff --git a/server/main/server.hpp b/server/main/server.hpp index 50d8c7a..6233bff 100644 --- a/server/main/server.hpp +++ b/server/main/server.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "session_manager.hpp" diff --git a/server/main/session.cpp b/server/main/session.cpp index 7249f0e..900e5b4 100644 --- a/server/main/session.cpp +++ b/server/main/session.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "session.hpp" #include "session_manager.hpp" diff --git a/server/main/session.hpp b/server/main/session.hpp index 98f28dd..31be327 100644 --- a/server/main/session.hpp +++ b/server/main/session.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <boost/asio.hpp> diff --git a/server/main/session_manager.cpp b/server/main/session_manager.cpp index c2aef6d..d73e998 100644 --- a/server/main/session_manager.cpp +++ b/server/main/session_manager.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include "session.hpp" #include "session_manager.hpp" diff --git a/server/main/session_manager.hpp b/server/main/session_manager.hpp index f0bec0b..66b8d67 100644 --- a/server/main/session_manager.hpp +++ b/server/main/session_manager.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <boost/asio.hpp> diff --git a/server/main/settings.hpp b/server/main/settings.hpp index 5a1e375..9f2e616 100644 --- a/server/main/settings.hpp +++ b/server/main/settings.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include <boost/filesystem.hpp> diff --git a/server/parser/error.hpp b/server/parser/error.hpp index 1ba29ed..66d6e45 100644 --- a/server/parser/error.hpp +++ b/server/parser/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "../common/error.hpp" diff --git a/server/parser/operator.hpp b/server/parser/operator.hpp index 4226078..f1c24de 100644 --- a/server/parser/operator.hpp +++ b/server/parser/operator.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/server/parser/parser.hpp b/server/parser/parser.hpp index 1197c31..ac87fbe 100644 --- a/server/parser/parser.hpp +++ b/server/parser/parser.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/test/unit_tests/lexer.cpp b/test/unit_tests/lexer.cpp index fdc93e1..aa4011c 100644 --- a/test/unit_tests/lexer.cpp +++ b/test/unit_tests/lexer.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include <server/lexer/error.hpp> #include <server/lexer/lexer.hpp> #include <server/lexer/token.hpp> diff --git a/test/unit_tests/main.cpp b/test/unit_tests/main.cpp index 5d8b492..d56b8bd 100644 --- a/test/unit_tests/main.cpp +++ b/test/unit_tests/main.cpp @@ -1,2 +1,7 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #define BOOST_TEST_MODULE math_server tests #include <boost/test/included/unit_test.hpp> diff --git a/test/unit_tests/parser.cpp b/test/unit_tests/parser.cpp index bf31223..562c6b7 100644 --- a/test/unit_tests/parser.cpp +++ b/test/unit_tests/parser.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "math-server" project. +// For details, see https://github.com/egor-tensin/math-server. +// Distributed under the MIT License. + #include <server/parser/error.hpp> #include <server/parser/parser.hpp> |