aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-22 12:17:01 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-22 12:17:01 +0300
commit1a3bf05144711529a1bc8fa6cec3091d70c5b1ab (patch)
tree9cdf9b912083682d7c90a26e5a416c9659e89867 /server
parentupdate cmake-common (diff)
downloadmath-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.tar.gz
math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.zip
add licensing notes to source files
Diffstat (limited to 'server')
-rw-r--r--server/common/error.hpp5
-rw-r--r--server/common/log.hpp5
-rw-r--r--server/lexer/error.hpp5
-rw-r--r--server/lexer/input.hpp5
-rw-r--r--server/lexer/lexer.cpp5
-rw-r--r--server/lexer/lexer.hpp5
-rw-r--r--server/lexer/token.cpp5
-rw-r--r--server/lexer/token.hpp5
-rw-r--r--server/lexer/token_type.cpp5
-rw-r--r--server/lexer/token_type.hpp5
-rw-r--r--server/main/main.cpp5
-rw-r--r--server/main/server.cpp5
-rw-r--r--server/main/server.hpp5
-rw-r--r--server/main/session.cpp5
-rw-r--r--server/main/session.hpp5
-rw-r--r--server/main/session_manager.cpp5
-rw-r--r--server/main/session_manager.hpp5
-rw-r--r--server/main/settings.hpp5
-rw-r--r--server/parser/error.hpp5
-rw-r--r--server/parser/operator.hpp5
-rw-r--r--server/parser/parser.hpp5
21 files changed, 105 insertions, 0 deletions
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"