From ce6a984461b0e53c7e6789a519c2bbab7cb494db Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 17 Sep 2016 05:25:10 +0300 Subject: add copyright notices to source files --- CMakeLists.txt | 5 +++++ src/error.hpp | 5 +++++ src/handle.hpp | 5 +++++ src/main.cpp | 5 +++++ src/os.hpp | 5 +++++ src/process.hpp | 5 +++++ src/resource.hpp | 5 +++++ src/sid.hpp | 5 +++++ src/token.hpp | 5 +++++ 9 files changed, 45 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b9aabf..148e28c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,8 @@ +# Copyright (c) 2016 Egor Tensin +# This file is part of the "Privilege test" project. +# For details, see https://github.com/egor-tensin/privilege-test. +# Distributed under the MIT License. + project(privilege_test) file(GLOB ${PROJECT_NAME}_source_files "src/*.cpp") diff --git a/src/error.hpp b/src/error.hpp index ad43307..e8f47a4 100644 --- a/src/error.hpp +++ b/src/error.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include diff --git a/src/handle.hpp b/src/handle.hpp index 5f83f24..415541b 100644 --- a/src/handle.hpp +++ b/src/handle.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include diff --git a/src/main.cpp b/src/main.cpp index 4e31e9f..be8d5e7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #include "error.hpp" #include "os.hpp" #include "process.hpp" diff --git a/src/os.hpp b/src/os.hpp index 1a3c52d..546e6e0 100644 --- a/src/os.hpp +++ b/src/os.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/process.hpp b/src/process.hpp index 864d452..8279c3c 100644 --- a/src/process.hpp +++ b/src/process.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/resource.hpp b/src/resource.hpp index 602541f..bd97c82 100644 --- a/src/resource.hpp +++ b/src/resource.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/sid.hpp b/src/sid.hpp index 15ce73b..a8ee3aa 100644 --- a/src/sid.hpp +++ b/src/sid.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" diff --git a/src/token.hpp b/src/token.hpp index bc5083f..e44ab00 100644 --- a/src/token.hpp +++ b/src/token.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2016 Egor Tensin +// This file is part of the "Privilege test" project. +// For details, see https://github.com/egor-tensin/privilege-test. +// Distributed under the MIT License. + #pragma once #include "error.hpp" -- cgit v1.2.3