From 7fbdd34246bd04b630128143bc7e2b61df7f69c8 Mon Sep 17 00:00:00 2001 From: KjellKod Date: Thu, 3 Jul 2014 15:42:19 -0600 Subject: [PATCH] Added license and license referral to avoid any license confusion. G3log is a public domain dedication. Ref the unlicense.org --- LICENSE | 24 +++++++++++++++++++ g2log/src/active.hpp | 2 ++ g2log/src/crashhandler.hpp | 2 ++ g2log/src/crashhandler_unix.cpp | 2 ++ g2log/src/crashhandler_win.cpp | 2 ++ g2log/src/g2filesink.cpp | 2 ++ g2log/src/g2filesink.hpp | 2 ++ g2log/src/g2filesinkhelper.ipp | 2 ++ g2log/src/g2future.hpp | 2 ++ g2log/src/g2log.cpp | 2 ++ g2log/src/g2log.hpp | 2 ++ g2log/src/g2loglevels.cpp | 2 ++ g2log/src/g2loglevels.hpp | 2 ++ g2log/src/g2logmessage.cpp | 2 ++ g2log/src/g2logmessage.hpp | 2 ++ g2log/src/g2logmessagecapture.cpp | 2 ++ g2log/src/g2logmessagecapture.hpp | 2 ++ g2log/src/g2logworker.cpp | 2 ++ g2log/src/g2logworker.hpp | 2 ++ g2log/src/g2moveoncopy.hpp | 2 ++ g2log/src/g2sink.hpp | 2 ++ g2log/src/g2sinkhandle.hpp | 2 ++ g2log/src/g2sinkwrapper.hpp | 2 ++ g2log/src/g2time.cpp | 2 ++ g2log/src/g2time.hpp | 2 ++ g2log/src/shared_queue.hpp | 2 ++ g2log/src/std2_make_unique.hpp | 2 ++ g2log/src/stlpatch_future.hpp | 2 +- g2log/test_example/main_contract.cpp | 2 ++ g2log/test_example/main_sigsegv.cpp | 2 ++ g2log/test_performance/main_threaded_mean.cpp | 2 ++ .../test_performance/main_threaded_worst.cpp | 2 ++ g2log/test_performance/performance.h | 2 ++ g2log/test_unit/test_concept_sink.cpp | 2 ++ g2log/test_unit/test_configuration.cpp | 2 ++ g2log/test_unit/test_filechange.cpp | 2 ++ g2log/test_unit/test_io.cpp | 2 ++ .../test_linux_dynamic_loaded_sharedlib.cpp | 9 +++++++ g2log/test_unit/test_sink.cpp | 2 ++ g2log/test_unit/tester_sharedlib.cpp | 8 +++++++ g2log/test_unit/tester_sharedlib.h | 9 +++++++ g2log/test_unit/testing_helpers.cpp | 10 ++++---- g2log/test_unit/testing_helpers.h | 2 ++ 43 files changed, 131 insertions(+), 5 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..68a49daad --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/g2log/src/active.hpp b/g2log/src/active.hpp index ca53e5216..bdaa693e5 100644 --- a/g2log/src/active.hpp +++ b/g2log/src/active.hpp @@ -2,6 +2,8 @@ * 2010 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * * Example of a Active Object, using C++11 std::thread mechanisms to make it diff --git a/g2log/src/crashhandler.hpp b/g2log/src/crashhandler.hpp index 94342d926..8cde49bdc 100644 --- a/g2log/src/crashhandler.hpp +++ b/g2log/src/crashhandler.hpp @@ -4,6 +4,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include #include diff --git a/g2log/src/crashhandler_unix.cpp b/g2log/src/crashhandler_unix.cpp index 8e302040e..2bd782352 100644 --- a/g2log/src/crashhandler_unix.cpp +++ b/g2log/src/crashhandler_unix.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "crashhandler.hpp" diff --git a/g2log/src/crashhandler_win.cpp b/g2log/src/crashhandler_win.cpp index d79abfe14..fd5bf19c0 100644 --- a/g2log/src/crashhandler_win.cpp +++ b/g2log/src/crashhandler_win.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "crashhandler.hpp" diff --git a/g2log/src/g2filesink.cpp b/g2log/src/g2filesink.cpp index 3ed3211be..bfda9ed0f 100644 --- a/g2log/src/g2filesink.cpp +++ b/g2log/src/g2filesink.cpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "g2filesink.hpp" diff --git a/g2log/src/g2filesink.hpp b/g2log/src/g2filesink.hpp index bf74aef78..239dcac4b 100644 --- a/g2log/src/g2filesink.hpp +++ b/g2log/src/g2filesink.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #pragma once diff --git a/g2log/src/g2filesinkhelper.ipp b/g2log/src/g2filesinkhelper.ipp index 2fcbc99ae..3adfb8893 100644 --- a/g2log/src/g2filesinkhelper.ipp +++ b/g2log/src/g2filesinkhelper.ipp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #pragma once diff --git a/g2log/src/g2future.hpp b/g2log/src/g2future.hpp index ab407369a..696374c3e 100644 --- a/g2log/src/g2future.hpp +++ b/g2log/src/g2future.hpp @@ -4,6 +4,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2future.hpp * Helper functionality to put packaged_tasks in standard container. This diff --git a/g2log/src/g2log.cpp b/g2log/src/g2log.cpp index 84dfad7ac..b0717a85c 100644 --- a/g2log/src/g2log.cpp +++ b/g2log/src/g2log.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * * Filename:g2log.cpp Framework for Logging and Design By Contract diff --git a/g2log/src/g2log.hpp b/g2log/src/g2log.hpp index 515f07fde..f83de7e46 100644 --- a/g2log/src/g2log.hpp +++ b/g2log/src/g2log.hpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * * Filename:g2log.hpp Framework for Logging and Design By Contract diff --git a/g2log/src/g2loglevels.cpp b/g2log/src/g2loglevels.cpp index 33734ebea..96d59c328 100644 --- a/g2log/src/g2loglevels.cpp +++ b/g2log/src/g2loglevels.cpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2loglevels.cpp Part of Framework for Logging and Design By Contract * Created: 2012 by Kjell Hedström diff --git a/g2log/src/g2loglevels.hpp b/g2log/src/g2loglevels.hpp index 5a0942abe..d8f617391 100644 --- a/g2log/src/g2loglevels.hpp +++ b/g2log/src/g2loglevels.hpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2loglevels.hpp Part of Framework for Logging and Design By Contract * Created: 2012 by Kjell Hedström diff --git a/g2log/src/g2logmessage.cpp b/g2log/src/g2logmessage.cpp index 6695507d1..83d6600dc 100644 --- a/g2log/src/g2logmessage.cpp +++ b/g2log/src/g2logmessage.cpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2logmessage.cpp Part of Framework for Logging and Design By Contract * Created: 2012 by Kjell Hedström diff --git a/g2log/src/g2logmessage.hpp b/g2log/src/g2logmessage.hpp index 44b75fbc2..b9e058b96 100644 --- a/g2log/src/g2logmessage.hpp +++ b/g2log/src/g2logmessage.hpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2logmessage.hpp Part of Framework for Logging and Design By Contract * Created: 2012 by Kjell Hedström diff --git a/g2log/src/g2logmessagecapture.cpp b/g2log/src/g2logmessagecapture.cpp index 16cd9f648..63576f9bf 100644 --- a/g2log/src/g2logmessagecapture.cpp +++ b/g2log/src/g2logmessagecapture.cpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "g2logmessagecapture.hpp" diff --git a/g2log/src/g2logmessagecapture.hpp b/g2log/src/g2logmessagecapture.hpp index 5f96bbb90..0c709e1f7 100644 --- a/g2log/src/g2logmessagecapture.hpp +++ b/g2log/src/g2logmessagecapture.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #pragma once diff --git a/g2log/src/g2logworker.cpp b/g2log/src/g2logworker.cpp index e0aff0640..d9505e90a 100644 --- a/g2log/src/g2logworker.cpp +++ b/g2log/src/g2logworker.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2LogWorker.cpp Framework for Logging and Design By Contract * Created: 2011 by Kjell Hedström diff --git a/g2log/src/g2logworker.hpp b/g2log/src/g2logworker.hpp index 526576b1f..2d37a08eb 100644 --- a/g2log/src/g2logworker.hpp +++ b/g2log/src/g2logworker.hpp @@ -4,6 +4,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2logworker.h Framework for Logging and Design By Contract * Created: 2011 by Kjell Hedström diff --git a/g2log/src/g2moveoncopy.hpp b/g2log/src/g2moveoncopy.hpp index e724e15d1..5155656b2 100644 --- a/g2log/src/g2moveoncopy.hpp +++ b/g2log/src/g2moveoncopy.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #pragma once diff --git a/g2log/src/g2sink.hpp b/g2log/src/g2sink.hpp index fe07ef6bc..4b25b0d74 100644 --- a/g2log/src/g2sink.hpp +++ b/g2log/src/g2sink.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #ifndef G2SINK_IPP diff --git a/g2log/src/g2sinkhandle.hpp b/g2log/src/g2sinkhandle.hpp index e09f76747..a796d5cc5 100644 --- a/g2log/src/g2sinkhandle.hpp +++ b/g2log/src/g2sinkhandle.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #ifndef G2SINKHANDLE_H diff --git a/g2log/src/g2sinkwrapper.hpp b/g2log/src/g2sinkwrapper.hpp index a0d1a34d6..7e7a775d6 100644 --- a/g2log/src/g2sinkwrapper.hpp +++ b/g2log/src/g2sinkwrapper.hpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #ifndef G2SINKWRAPPER_HPP diff --git a/g2log/src/g2time.cpp b/g2log/src/g2time.cpp index 7b77ba0f9..da687d8c7 100644 --- a/g2log/src/g2time.cpp +++ b/g2log/src/g2time.cpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2time.cpp cross-platform, thread-safe replacement for C++11 non-thread-safe * localtime (and similar) diff --git a/g2log/src/g2time.hpp b/g2log/src/g2time.hpp index 814f47605..aa5e110f0 100644 --- a/g2log/src/g2time.hpp +++ b/g2log/src/g2time.hpp @@ -4,6 +4,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * Filename:g2time.h cross-platform, thread-safe replacement for C++11 non-thread-safe * localtime (and similar) diff --git a/g2log/src/shared_queue.hpp b/g2log/src/shared_queue.hpp index 6c4d5eeeb..a3b5652b3 100644 --- a/g2log/src/shared_queue.hpp +++ b/g2log/src/shared_queue.hpp @@ -2,6 +2,8 @@ * 2010 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================ * * Example of a normal std::queue protected by a mutex for operations, diff --git a/g2log/src/std2_make_unique.hpp b/g2log/src/std2_make_unique.hpp index 928c82e3f..f17a81b3b 100644 --- a/g2log/src/std2_make_unique.hpp +++ b/g2log/src/std2_make_unique.hpp @@ -3,6 +3,8 @@ * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org + * * make_unique will be in C++14, this implementation is copied as I understood * Stephan T. Lavavej's description of it. * diff --git a/g2log/src/stlpatch_future.hpp b/g2log/src/stlpatch_future.hpp index 052e98165..1916aa3aa 100644 --- a/g2log/src/stlpatch_future.hpp +++ b/g2log/src/stlpatch_future.hpp @@ -68,4 +68,4 @@ namespace std { }; }; // namespace std -#endif // defined(WIN32) ... \ No newline at end of file +#endif // defined(WIN32) ... diff --git a/g2log/test_example/main_contract.cpp b/g2log/test_example/main_contract.cpp index 46da868a0..6e6c5b74c 100644 --- a/g2log/test_example/main_contract.cpp +++ b/g2log/test_example/main_contract.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "g2logworker.hpp" diff --git a/g2log/test_example/main_sigsegv.cpp b/g2log/test_example/main_sigsegv.cpp index 32667b30a..c38d973fa 100644 --- a/g2log/test_example/main_sigsegv.cpp +++ b/g2log/test_example/main_sigsegv.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include "g2logworker.hpp" diff --git a/g2log/test_performance/main_threaded_mean.cpp b/g2log/test_performance/main_threaded_mean.cpp index d0f83b5b5..e21a69076 100644 --- a/g2log/test_performance/main_threaded_mean.cpp +++ b/g2log/test_performance/main_threaded_mean.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ // through CMakeLists.txt #define of GOOGLE_GLOG_PERFORMANCE and G2LOG_PERFORMANCE diff --git a/g2log/test_performance/main_threaded_worst.cpp b/g2log/test_performance/main_threaded_worst.cpp index 2f8d0b6b1..6877c7cf0 100644 --- a/g2log/test_performance/main_threaded_worst.cpp +++ b/g2log/test_performance/main_threaded_worst.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ // through CMakeLists.txt #define of GOOGLE_GLOG_PERFORMANCE and G2LOG_PERFORMANCE diff --git a/g2log/test_performance/performance.h b/g2log/test_performance/performance.h index 593bd6bac..6e11d8f30 100644 --- a/g2log/test_performance/performance.h +++ b/g2log/test_performance/performance.h @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #ifndef PERFORMANCE_G2_TEST_H_ #define PERFORMANCE_G2_TEST_H_ diff --git a/g2log/test_unit/test_concept_sink.cpp b/g2log/test_unit/test_concept_sink.cpp index 4cf2c9c9f..89ac48dee 100644 --- a/g2log/test_unit/test_concept_sink.cpp +++ b/g2log/test_unit/test_concept_sink.cpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include diff --git a/g2log/test_unit/test_configuration.cpp b/g2log/test_unit/test_configuration.cpp index 28ff8a089..d4e510dc9 100644 --- a/g2log/test_unit/test_configuration.cpp +++ b/g2log/test_unit/test_configuration.cpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include diff --git a/g2log/test_unit/test_filechange.cpp b/g2log/test_unit/test_filechange.cpp index 0b0bb1f68..2a66bb35f 100644 --- a/g2log/test_unit/test_filechange.cpp +++ b/g2log/test_unit/test_filechange.cpp @@ -2,6 +2,8 @@ * 2012 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ diff --git a/g2log/test_unit/test_io.cpp b/g2log/test_unit/test_io.cpp index f8d513d9a..d99fd67fa 100644 --- a/g2log/test_unit/test_io.cpp +++ b/g2log/test_unit/test_io.cpp @@ -2,6 +2,8 @@ * 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include diff --git a/g2log/test_unit/test_linux_dynamic_loaded_sharedlib.cpp b/g2log/test_unit/test_linux_dynamic_loaded_sharedlib.cpp index 198831fbf..35ad14713 100644 --- a/g2log/test_unit/test_linux_dynamic_loaded_sharedlib.cpp +++ b/g2log/test_unit/test_linux_dynamic_loaded_sharedlib.cpp @@ -1,3 +1,12 @@ +/** ========================================================================== +* 2014 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes +* with no warranties. This code is yours to share, use and modify with no +* strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org +* ============================================================================*/ + + #include #include #include diff --git a/g2log/test_unit/test_sink.cpp b/g2log/test_unit/test_sink.cpp index 1ed67327d..5e22bfc8c 100644 --- a/g2log/test_unit/test_sink.cpp +++ b/g2log/test_unit/test_sink.cpp @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #include diff --git a/g2log/test_unit/tester_sharedlib.cpp b/g2log/test_unit/tester_sharedlib.cpp index 7d1477d3e..214caf429 100644 --- a/g2log/test_unit/tester_sharedlib.cpp +++ b/g2log/test_unit/tester_sharedlib.cpp @@ -1,3 +1,11 @@ +/** ========================================================================== + * 2014 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes + * with no warranties. This code is yours to share, use and modify with no + * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org + * ============================================================================*/ + #include #include "tester_sharedlib.h" diff --git a/g2log/test_unit/tester_sharedlib.h b/g2log/test_unit/tester_sharedlib.h index f9e5d593f..d85389d68 100644 --- a/g2log/test_unit/tester_sharedlib.h +++ b/g2log/test_unit/tester_sharedlib.h @@ -1,3 +1,12 @@ +/** ========================================================================== + * 2014 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes + * with no warranties. This code is yours to share, use and modify with no + * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org + * ============================================================================*/ + + #pragma once struct SomeLibrary { diff --git a/g2log/test_unit/testing_helpers.cpp b/g2log/test_unit/testing_helpers.cpp index d62185342..2dd01bbe8 100644 --- a/g2log/test_unit/testing_helpers.cpp +++ b/g2log/test_unit/testing_helpers.cpp @@ -1,8 +1,10 @@ /** ========================================================================== - * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes - * with no warranties. This code is yours to share, use and modify with no - * strings attached and no restrictions or obligations. - * ============================================================================*/ +* 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes +* with no warranties. This code is yours to share, use and modify with no +* strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org +* ============================================================================*/ #include diff --git a/g2log/test_unit/testing_helpers.h b/g2log/test_unit/testing_helpers.h index 9c8b282dd..40367ad01 100644 --- a/g2log/test_unit/testing_helpers.h +++ b/g2log/test_unit/testing_helpers.h @@ -2,6 +2,8 @@ * 2013 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes * with no warranties. This code is yours to share, use and modify with no * strings attached and no restrictions or obligations. + * + * For more information see g3log/LICENSE or refer refer to http://unlicense.org * ============================================================================*/ #pragma once