From fd21d5dd9502f7b9dd7129d125d4c5bed5e8ac10 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Thu, 13 Dec 2018 20:44:10 +0900 Subject: [PATCH] add simplest copyright notice --- toml/combinator.hpp | 2 ++ toml/datetime.hpp | 2 ++ toml/exception.hpp | 2 ++ toml/from_toml.hpp | 2 ++ toml/get.hpp | 2 ++ toml/lexer.hpp | 2 ++ toml/parser.hpp | 2 ++ toml/region.hpp | 2 ++ toml/result.hpp | 2 ++ toml/storage.hpp | 2 ++ toml/string.hpp | 2 ++ toml/to_toml.hpp | 2 ++ toml/traits.hpp | 2 ++ toml/types.hpp | 2 ++ toml/utility.hpp | 2 ++ toml/value.hpp | 2 ++ 16 files changed, 32 insertions(+) diff --git a/toml/combinator.hpp b/toml/combinator.hpp index 30cd028..ff528eb 100644 --- a/toml/combinator.hpp +++ b/toml/combinator.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_COMBINATOR_HPP #define TOML11_COMBINATOR_HPP #include "traits.hpp" diff --git a/toml/datetime.hpp b/toml/datetime.hpp index 981d230..a32968a 100644 --- a/toml/datetime.hpp +++ b/toml/datetime.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_DATETIME #define TOML11_DATETIME #include diff --git a/toml/exception.hpp b/toml/exception.hpp index 87316b6..f92a7c1 100644 --- a/toml/exception.hpp +++ b/toml/exception.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_EXCEPTION #define TOML11_EXCEPTION #include diff --git a/toml/from_toml.hpp b/toml/from_toml.hpp index 065768c..a9348eb 100644 --- a/toml/from_toml.hpp +++ b/toml/from_toml.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_FROM_TOML #define TOML11_FROM_TOML #include "get.hpp" diff --git a/toml/get.hpp b/toml/get.hpp index 1cf15ba..cddbe73 100644 --- a/toml/get.hpp +++ b/toml/get.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_GET #define TOML11_GET #include "result.hpp" diff --git a/toml/lexer.hpp b/toml/lexer.hpp index 060195e..4f170c5 100644 --- a/toml/lexer.hpp +++ b/toml/lexer.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_LEXER_HPP #define TOML11_LEXER_HPP #include "combinator.hpp" diff --git a/toml/parser.hpp b/toml/parser.hpp index df1e1d9..e83de1d 100644 --- a/toml/parser.hpp +++ b/toml/parser.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_PARSER_HPP #define TOML11_PARSER_HPP #include "result.hpp" diff --git a/toml/region.hpp b/toml/region.hpp index e254673..8a673f6 100644 --- a/toml/region.hpp +++ b/toml/region.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_REGION_H #define TOML11_REGION_H #include "exception.hpp" diff --git a/toml/result.hpp b/toml/result.hpp index 90ff1d5..3b13acd 100644 --- a/toml/result.hpp +++ b/toml/result.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_RESULT_H #define TOML11_RESULT_H #include diff --git a/toml/storage.hpp b/toml/storage.hpp index 4e3f114..30408f9 100644 --- a/toml/storage.hpp +++ b/toml/storage.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_STORAGE_HPP #define TOML11_STORAGE_HPP #include "utility.hpp" diff --git a/toml/string.hpp b/toml/string.hpp index bcda155..eef932d 100644 --- a/toml/string.hpp +++ b/toml/string.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_STRING_H #define TOML11_STRING_H #include diff --git a/toml/to_toml.hpp b/toml/to_toml.hpp index b8a5c29..348ce47 100644 --- a/toml/to_toml.hpp +++ b/toml/to_toml.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_TO_TOML #define TOML11_TO_TOML #include "value.hpp" diff --git a/toml/traits.hpp b/toml/traits.hpp index aec49b0..fc4ef85 100644 --- a/toml/traits.hpp +++ b/toml/traits.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_TRAITS #define TOML11_TRAITS #include diff --git a/toml/types.hpp b/toml/types.hpp index 0e9637d..cd13edf 100644 --- a/toml/types.hpp +++ b/toml/types.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_TYPES_H #define TOML11_TYPES_H #include "datetime.hpp" diff --git a/toml/utility.hpp b/toml/utility.hpp index 26eff2d..66b1985 100644 --- a/toml/utility.hpp +++ b/toml/utility.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_UTILITY #define TOML11_UTILITY #include "traits.hpp" diff --git a/toml/value.hpp b/toml/value.hpp index b48031f..68c063a 100644 --- a/toml/value.hpp +++ b/toml/value.hpp @@ -1,3 +1,5 @@ +// Copyright Toru Niina 2017. +// Distributed under the MIT License. #ifndef TOML11_VALUE #define TOML11_VALUE #include "traits.hpp"