Warning, file /kdevelop/kdevelop/kdevplatform/serialization/abstractitemrepository.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 }