diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 12:17:01 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 12:17:01 +0300 |
commit | 1a3bf05144711529a1bc8fa6cec3091d70c5b1ab (patch) | |
tree | 9cdf9b912083682d7c90a26e5a416c9659e89867 /server/lexer | |
parent | update cmake-common (diff) | |
download | math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.tar.gz math-server-1a3bf05144711529a1bc8fa6cec3091d70c5b1ab.zip |
add licensing notes to source files
Diffstat (limited to 'server/lexer')
-rw-r--r-- | server/lexer/error.hpp | 5 | ||||
-rw-r--r-- | server/lexer/input.hpp | 5 | ||||
-rw-r--r-- | server/lexer/lexer.cpp | 5 | ||||
-rw-r--r-- | server/lexer/lexer.hpp | 5 | ||||
-rw-r--r-- | server/lexer/token.cpp | 5 | ||||
-rw-r--r-- | server/lexer/token.hpp | 5 | ||||
-rw-r--r-- | server/lexer/token_type.cpp | 5 | ||||
-rw-r--r-- | server/lexer/token_type.hpp | 5 |
8 files changed, 40 insertions, 0 deletions
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> |