summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorckgt <ckarlsson25@gmail.com>2017-07-19 21:57:03 -0400
committerckgt <ckarlsson25@gmail.com>2017-07-19 21:57:03 -0400
commite39d33af7b2e7a6185f32bfe34a19d3614a0406e (patch)
tree11a08c65cf30343d3c8fb4ca64273b50a71f3f5d
parente0b28361d572278248e14a19de3fa027d4bd7df9 (diff)
Added ZLib license text in license file and added references in source files.
-rw-r--r--demo_advanced.cpp5
-rw-r--r--demo_simple.cpp6
-rw-r--r--include/nmeaparse/Event.h2
-rw-r--r--include/nmeaparse/GPSFix.h2
-rw-r--r--include/nmeaparse/GPSService.h2
-rw-r--r--include/nmeaparse/NMEACommand.h2
-rw-r--r--include/nmeaparse/NMEAParser.h2
-rw-r--r--include/nmeaparse/NumberConversion.h2
-rw-r--r--include/nmeaparse/nmea.h2
-rw-r--r--license17
-rw-r--r--src/GPSFix.cpp2
-rw-r--r--src/GPSService.cpp2
-rw-r--r--src/NMEACommand.cpp2
-rw-r--r--src/NMEAParser.cpp2
-rw-r--r--src/NumberConversion.cpp2
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 <iostream>
#include <fstream>
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 <iostream>
#include <fstream>
#include <iomanip>
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 <nmeaparse/GPSFix.h>
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 <nmeaparse/NMEACommand.h>
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 <nmeaparse/NMEAParser.h>
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 <nmeaparse/NumberConversion.h>