Readd copyright notices

Apparently lost in commit cb5a9a0d28ed4761272fcad65001c376445cc7d6.
This commit is contained in:
Ignacio R. Morelle 2014-06-27 22:27:21 -04:00
parent fc1afefccb
commit 0050fdda65
2 changed files with 29 additions and 1 deletions

View File

@ -1,3 +1,17 @@
/*
Copyright (C) 2003 - 2014 by David White <dave@whitevine.net>
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"

View File

@ -1,6 +1,20 @@
/*
Copyright (C) 2003 - 2014 by David White <dave@whitevine.net>
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 <string>
namespace notifications
namespace notifications
{
void send_notification(const std::string& owner, const std::string& message);
}