From 0050fdda6501df3661978f6e470df769244a9fcc Mon Sep 17 00:00:00 2001 From: "Ignacio R. Morelle" Date: Fri, 27 Jun 2014 22:27:21 -0400 Subject: [PATCH] Readd copyright notices Apparently lost in commit cb5a9a0d28ed4761272fcad65001c376445cc7d6. --- src/notifications/notifications.cpp | 14 ++++++++++++++ src/notifications/notifications.hpp | 16 +++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/src/notifications/notifications.cpp b/src/notifications/notifications.cpp index 16ab6dda412..2b740d7407c 100644 --- a/src/notifications/notifications.cpp +++ b/src/notifications/notifications.cpp @@ -1,3 +1,17 @@ +/* + Copyright (C) 2003 - 2014 by David White + Part of the Battle for Wesnoth Project http://www.wesnoth.org/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY. + + See the COPYING file for more details. +*/ + #include "notifications.hpp" #include "global.hpp" diff --git a/src/notifications/notifications.hpp b/src/notifications/notifications.hpp index 3a9e974982e..6020e6adc3a 100644 --- a/src/notifications/notifications.hpp +++ b/src/notifications/notifications.hpp @@ -1,6 +1,20 @@ +/* + Copyright (C) 2003 - 2014 by David White + Part of the Battle for Wesnoth Project http://www.wesnoth.org/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY. + + See the COPYING file for more details. +*/ + #include -namespace notifications +namespace notifications { void send_notification(const std::string& owner, const std::string& message); }