From 909ceab5e919b5da8b90a88a6186c6cf0d044931 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Thu, 28 Apr 2016 17:27:27 +0000 Subject: [PATCH] poke some fun with license header --- external/3rd/library/webAPI/webAPI.cpp | 13 +++++++++++++ external/3rd/library/webAPI/webAPI.h | 14 ++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/external/3rd/library/webAPI/webAPI.cpp b/external/3rd/library/webAPI/webAPI.cpp index f0c03a84..aaeb38e0 100644 --- a/external/3rd/library/webAPI/webAPI.cpp +++ b/external/3rd/library/webAPI/webAPI.cpp @@ -1,3 +1,16 @@ +/* +This code is just a simple wrapper around nlohmann's wonderful json lib +(https://github.com/nlohmann/json) and libcurl. While originally included directly, +we have come to realize that we may require web API functionality elsewhere in the future. + +As such, and in an effort to keep the code clean, we've broken it out into this simple little +namespace/lib that is easy to include. Just make sure to link against curl when including, and +make all the cmake modifications required to properly use it. + +(c) stellabellum/swgilluminati (combined crews), written by DA with help from DC + +License: what's a license? we're a bunch of dirty pirates! +*/ #include "webAPI.h" diff --git a/external/3rd/library/webAPI/webAPI.h b/external/3rd/library/webAPI/webAPI.h index 9e4e445f..42ecae12 100644 --- a/external/3rd/library/webAPI/webAPI.h +++ b/external/3rd/library/webAPI/webAPI.h @@ -1,3 +1,17 @@ +/* +This code is just a simple wrapper around nlohmann's wonderful json lib +(https://github.com/nlohmann/json) and libcurl. While originally included directly, +we have come to realize that we may require web API functionality elsewhere in the future. + +As such, and in an effort to keep the code clean, we've broken it out into this simple little +namespace/lib that is easy to include. Just make sure to link against curl when including, and +make all the cmake modifications required to properly use it. + +(c) stellabellum/swgilluminati (combined crews), written by DA with help from DC + +License: what's a license? we're a bunch of dirty pirates! +*/ + #ifndef webAPI_H #define webAPI_H