diff options
Diffstat (limited to '')
-rw-r--r-- | server/parser/error.hpp | 5 | ||||
-rw-r--r-- | server/parser/operator.hpp | 5 | ||||
-rw-r--r-- | server/parser/parser.hpp | 5 |
3 files changed, 15 insertions, 0 deletions
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" |