diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..68a49da --- /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 ca53e52..bdaa693 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 94342d9..8cde49b 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 8e30204..2bd7823 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 d79abfe..fd5bf19 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 3ed3211..bfda9ed 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 bf74aef..239dcac 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 2fcbc99..3adfb88 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 ab40736..696374c 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 84dfad7..b0717a8 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 515f07f..f83de7e 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 33734eb..96d59c3 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 5a0942a..d8f6173 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 6695507..83d6600 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 44b75fb..b9e058b 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 16cd9f6..63576f9 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 5f96bbb..0c709e1 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 e0aff06..d9505e9 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 526576b..2d37a08 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 e724e15..5155656 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 fe07ef6..4b25b0d 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 e09f767..a796d5c 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 a0d1a34..7e7a775 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 7b77ba0..da687d8 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 814f476..aa5e110 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 6c4d5ee..a3b5652 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 928c82e..f17a81b 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 052e981..1916aa3 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 46da868..6e6c5b7 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 32667b3..c38d973 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 d0f83b5..e21a690 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 2f8d0b6..6877c7c 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 593bd6b..6e11d8f 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 4cf2c9c..89ac48d 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 28ff8a0..d4e510d 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 0b0bb1f..2a66bb3 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 f8d513d..d99fd67 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 198831f..35ad147 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 1ed6732..5e22bfc 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 7d1477d..214caf4 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 f9e5d59..d85389d 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 d621853..2dd01bb 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 9c8b282..40367ad 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