blob: 6cfbace7359bdf0b2500314b1ef2b242417dba04 [file] [log] [blame]
/****************************************************************************
* Copyright (C) 2017 Savoir-faire Linux *
* Author: Nicolas Jäger <nicolas.jager@savoirfairelinux.com> *
* Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#pragma once
// Lrc
#include <api/account.h>
/**
* This class contains a const reference linked to an account.
* NOTE: it avoids weird initialization with Gtk
* @param accInfo the account linked
*/
class AccountContainer {
public:
explicit AccountContainer (const lrc::api::account::Info& accInfo)
: info(accInfo)
{}
const lrc::api::account::Info& info;
};