File indexing completed on 2023-12-03 08:28:33
0001 /* 0002 * Copyright (C) 2013 Daniel Vrátil <dvratil@redhat.com> 0003 * 0004 * This library is free software; you can redistribute it and/or 0005 * modify it under the terms of the GNU Lesser General Public 0006 * License as published by the Free Software Foundation; either 0007 * version 2.1 of the License, or (at your option) any later version. 0008 * 0009 * This library is distributed in the hope that it will be useful, 0010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 0012 * Lesser General Public License for more details. 0013 * 0014 * You should have received a copy of the GNU Lesser General Public 0015 * License along with this library; if not, write to the Free Software 0016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 0017 * 0018 */ 0019 0020 #include "pending-logger-entities.h" 0021 #include "log-entity.h" 0022 0023 #include <TelepathyQt/Account> 0024 0025 using namespace KTp; 0026 0027 class PendingLoggerEntities::Private 0028 { 0029 public: 0030 Private(const Tp::AccountPtr &account_): 0031 account(account_) 0032 { 0033 } 0034 0035 Tp::AccountPtr account; 0036 QList<KTp::LogEntity> entities; 0037 }; 0038 0039 PendingLoggerEntities::PendingLoggerEntities(const Tp::AccountPtr &account, 0040 QObject *parent): 0041 PendingLoggerOperation(parent), 0042 d(new Private(account)) 0043 { 0044 } 0045 0046 PendingLoggerEntities::~PendingLoggerEntities() 0047 { 0048 delete d; 0049 } 0050 0051 Tp::AccountPtr PendingLoggerEntities::account() const 0052 { 0053 return d->account; 0054 } 0055 0056 QList<KTp::LogEntity> PendingLoggerEntities::entities() const 0057 { 0058 return d->entities; 0059 } 0060 0061 void PendingLoggerEntities::appendEntities(const QList<LogEntity> &entities) 0062 { 0063 d->entities << entities; 0064 } 0065 0066 void PendingLoggerEntities::appendEntity(const LogEntity &entity) 0067 { 0068 d->entities << entity; 0069 }