File indexing completed on 2024-04-21 03:52:46

0001 /*
0002   This file is part of the kcalcore library.
0003 
0004   SPDX-FileCopyrightText: 2004 Cornelius Schumacher <schumacher@kde.org>
0005 
0006   SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 /**
0009   @file
0010   This file is part of the API for handling calendar data and
0011   defines the FreeBusyCache abstract base class.
0012 
0013   @author Cornelius Schumacher \<schumacher@kde.org\>
0014 */
0015 
0016 #include "freebusycache.h"
0017 
0018 using namespace KCalendarCore;
0019 
0020 FreeBusyCache::~FreeBusyCache()
0021 {
0022 }
0023 
0024 void FreeBusyCache::virtual_hook(int id, void *data)
0025 {
0026     Q_UNUSED(id);
0027     Q_UNUSED(data);
0028     Q_ASSERT(false);
0029 }