From e39d33af7b2e7a6185f32bfe34a19d3614a0406e Mon Sep 17 00:00:00 2001 From: ckgt Date: Wed, 19 Jul 2017 21:57:03 -0400 Subject: Added ZLib license text in license file and added references in source files. --- demo_advanced.cpp | 5 ++++- demo_simple.cpp | 6 +++++- include/nmeaparse/Event.h | 2 ++ include/nmeaparse/GPSFix.h | 2 ++ include/nmeaparse/GPSService.h | 2 ++ include/nmeaparse/NMEACommand.h | 2 ++ include/nmeaparse/NMEAParser.h | 2 ++ include/nmeaparse/NumberConversion.h | 2 ++ include/nmeaparse/nmea.h | 2 ++ license | 17 +++++++++++++++++ src/GPSFix.cpp | 2 ++ src/GPSService.cpp | 2 ++ src/NMEACommand.cpp | 2 ++ src/NMEAParser.cpp | 2 ++ src/NumberConversion.cpp | 2 ++ 15 files changed, 50 insertions(+), 2 deletions(-) diff --git a/demo_advanced.cpp b/demo_advanced.cpp index d28012d..bc1670c 100644 --- a/demo_advanced.cpp +++ b/demo_advanced.cpp @@ -1,4 +1,7 @@ - +/* + * + * See the license file included with this source. + */ #include #include diff --git a/demo_simple.cpp b/demo_simple.cpp index 198017e..9109037 100644 --- a/demo_simple.cpp +++ b/demo_simple.cpp @@ -1,4 +1,8 @@ - +/* + * + * See the license file included with this source. + */ + #include #include #include diff --git a/include/nmeaparse/Event.h b/include/nmeaparse/Event.h index 4343496..b6bbd97 100644 --- a/include/nmeaparse/Event.h +++ b/include/nmeaparse/Event.h @@ -3,6 +3,8 @@ * * Created on: Sep 5, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef EVENT_H_ diff --git a/include/nmeaparse/GPSFix.h b/include/nmeaparse/GPSFix.h index 85adc0c..da891ba 100644 --- a/include/nmeaparse/GPSFix.h +++ b/include/nmeaparse/GPSFix.h @@ -3,6 +3,8 @@ * * Created on: Jul 23, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef GPSFIX_H_ diff --git a/include/nmeaparse/GPSService.h b/include/nmeaparse/GPSService.h index 4d10dbd..8b9e291 100644 --- a/include/nmeaparse/GPSService.h +++ b/include/nmeaparse/GPSService.h @@ -3,6 +3,8 @@ * * Created on: Aug 14, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef GPSSERVICE_H_ diff --git a/include/nmeaparse/NMEACommand.h b/include/nmeaparse/NMEACommand.h index d71b9b7..1719687 100644 --- a/include/nmeaparse/NMEACommand.h +++ b/include/nmeaparse/NMEACommand.h @@ -3,6 +3,8 @@ * * Created on: Sep 8, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef NMEACOMMAND_H_ diff --git a/include/nmeaparse/NMEAParser.h b/include/nmeaparse/NMEAParser.h index 6f63b85..65024c4 100644 --- a/include/nmeaparse/NMEAParser.h +++ b/include/nmeaparse/NMEAParser.h @@ -3,6 +3,8 @@ * * Created on: Aug 12, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef NMEAPARSER_H_ diff --git a/include/nmeaparse/NumberConversion.h b/include/nmeaparse/NumberConversion.h index b872124..342d200 100644 --- a/include/nmeaparse/NumberConversion.h +++ b/include/nmeaparse/NumberConversion.h @@ -3,6 +3,8 @@ * * Created on: Aug 14, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #ifndef NUMBERCONVERSION_H_ diff --git a/include/nmeaparse/nmea.h b/include/nmeaparse/nmea.h index deb10fd..811126e 100644 --- a/include/nmeaparse/nmea.h +++ b/include/nmeaparse/nmea.h @@ -3,6 +3,8 @@ * * Created on: March 23, 2014 * Author: Cameron Karlsson +* +* See the license file included with this source. */ diff --git a/license b/license index 5b65ffd..3ed1e41 100644 --- a/license +++ b/license @@ -1 +1,18 @@ NemaTode is released under the ZLib license. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source + distribution. \ No newline at end of file diff --git a/src/GPSFix.cpp b/src/GPSFix.cpp index 818b232..5cbb17f 100644 --- a/src/GPSFix.cpp +++ b/src/GPSFix.cpp @@ -3,6 +3,8 @@ * * Created on: Jul 23, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #include diff --git a/src/GPSService.cpp b/src/GPSService.cpp index 4f90a0f..9c3133e 100644 --- a/src/GPSService.cpp +++ b/src/GPSService.cpp @@ -3,6 +3,8 @@ * * Created on: Aug 14, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ diff --git a/src/NMEACommand.cpp b/src/NMEACommand.cpp index a432767..0319f99 100644 --- a/src/NMEACommand.cpp +++ b/src/NMEACommand.cpp @@ -3,6 +3,8 @@ * * Created on: Sep 8, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #include diff --git a/src/NMEAParser.cpp b/src/NMEAParser.cpp index 2b1ee8b..f646613 100644 --- a/src/NMEAParser.cpp +++ b/src/NMEAParser.cpp @@ -3,6 +3,8 @@ * * Created on: Aug 12, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #include diff --git a/src/NumberConversion.cpp b/src/NumberConversion.cpp index a5d429d..e0e6a0a 100644 --- a/src/NumberConversion.cpp +++ b/src/NumberConversion.cpp @@ -3,6 +3,8 @@ * * Created on: Sep 2, 2014 * Author: Cameron Karlsson + * + * See the license file included with this source. */ #include -- cgit v1.2.3