File indexing completed on 2024-05-05 04:38:08

0001 /*
0002     SPDX-FileCopyrightText: 2008 David Nolden <david.nolden.kdevelop@art-master.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #include "abstractitemrepository.h"
0008 
0009 #include "config-kdevplatform.h"
0010 
0011 namespace KDevelop {
0012 uint staticItemRepositoryVersion()
0013 {
0014     return KDEV_ITEMREPOSITORY_VERSION;
0015 }
0016 
0017 AbstractItemRepository::~AbstractItemRepository()
0018 {
0019 }
0020 }