diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/client.hpp | 5 | ||||
-rw-r--r-- | client/error.hpp | 5 | ||||
-rw-r--r-- | client/input.hpp | 5 | ||||
-rw-r--r-- | client/main.cpp | 5 | ||||
-rw-r--r-- | client/settings.hpp | 5 | ||||
-rw-r--r-- | client/transport.hpp | 5 |
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" |