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 30cd028e..ff528eb2 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 981d2303..a32968a5 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 87316b67..f92a7c1c 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 065768cf..a9348eb4 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 1cf15baa..cddbe731 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 060195ed..4f170c59 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 df1e1d93..e83de1df 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 e254673b..8a673f6d 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 90ff1d5a..3b13acde 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 4e3f1142..30408f97 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 bcda1551..eef932d5 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 b8a5c294..348ce478 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 aec49b0a..fc4ef853 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 0e9637da..cd13edfb 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 26eff2d6..66b19855 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 b48031f9..68c063ab 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"