aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/client
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 /client
parentupdate cmake-common (diff)
downloadmath-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.tar.gz
math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.zip
add licensing notes to source files
Diffstat (limited to 'client')
-rw-r--r--client/client.hpp5
-rw-r--r--client/error.hpp5
-rw-r--r--client/input.hpp5
-rw-r--r--client/main.cpp5
-rw-r--r--client/settings.hpp5
-rw-r--r--client/transport.hpp5
6 files changed, 30 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"