Fix license header

This commit is contained in:
Luca Beltrame 2013-12-24 10:08:38 +01:00
parent 019e0438ae
commit 0fa8fe223f

View file

@ -1,21 +1,24 @@
/*************************************************************************** /*
* Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> * * This file is part of Danbooru Client.
* * * Copyright 2013 Luca Beltrame <lbeltrame@kde.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 * * This program is free software; you can redistribute it and/or
* the Free Software Foundation; either version 2 of the License, or * * modify it under the terms of the GNU General Public License as
* (at your option) any later version. * * published by the Free Software Foundation; either version 2 of
* * * the License or (at your option) version 3 or any later version
* This program is distributed in the hope that it will be useful, * * accepted by the membership of KDE e.V. (or its successor approved
* but WITHOUT ANY WARRANTY; without even the implied warranty of * * by the membership of KDE e.V.), which shall act as a proxy
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * defined in Section 14 of version 3 of the license.
* GNU General Public License for more details. * *
* * * This program is distributed in the hope that it will be useful,
* You should have received a copy of the GNU General Public License * * but WITHOUT ANY WARRANTY; without even the implied warranty of
* along with this program; if not, write to the * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Free Software Foundation, Inc., * * GNU General Public License for more details.
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * *
***************************************************************************/ * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef DANBOORU_CLIENT_H #ifndef DANBOORU_CLIENT_H
#define DANBOORU_CLIENT_H #define DANBOORU_CLIENT_H
@ -28,6 +31,7 @@ namespace Danbooru {
class DanbooruClientView; class DanbooruClientView;
class DanbooruService; class DanbooruService;
class DanbooruPostModel; class DanbooruPostModel;
class DanbooruConnectWidget;
/** /**
* This class serves as the main window for danbooru_client. It handles the * This class serves as the main window for danbooru_client. It handles the
@ -64,6 +68,7 @@ namespace Danbooru {
DanbooruClientView *m_view; DanbooruClientView *m_view;
DanbooruPostModel* m_model; DanbooruPostModel* m_model;
DanbooruService* m_service; DanbooruService* m_service;
DanbooruConnectWidget* m_connectWidget;
}; };