diff --git a/src/notifications/notifications.cpp b/src/notifications/notifications.cpp index 16ab6dda4120..2b740d7407cb 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 3a9e974982ee..6020e6adc3ab 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); }