File indexing completed on 2024-11-10 04:40:39

0001 /*
0002     SPDX-FileCopyrightText: 2009 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "entitycache_p.h"
0008 
0009 using namespace Akonadi;
0010 
0011 EntityCacheBase::EntityCacheBase(Session *_session, QObject *parent)
0012     : QObject(parent)
0013     , session(_session)
0014 {
0015 }
0016 
0017 void EntityCacheBase::setSession(Session *_session)
0018 {
0019     session = _session;
0020 }
0021 
0022 #include "moc_entitycache_p.cpp"