aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/main
diff options
context:
space:
mode:
Diffstat (limited to 'server/main')
-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
8 files changed, 40 insertions, 0 deletions
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>