1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/*
SPDX-FileCopyrightText: 2007 David Nolden <david.nolden.kdevelop@art-master.de>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef KDEVPLATFORM_LOCALINDEXEDDECLARATION_H
#define KDEVPLATFORM_LOCALINDEXEDDECLARATION_H
#include <language/languageexport.h>
#include <QtGlobal>
namespace KDevelop {
class TopDUContext;
class Declaration;
/**
* Represents a declaration only by its index within the top-context
*/
class KDEVPLATFORMLANGUAGE_EXPORT LocalIndexedDeclaration
{
public:
LocalIndexedDeclaration(Declaration* decl = nullptr);
LocalIndexedDeclaration(uint declarationIndex);
/**
* \note Duchain must be read locked
*/
Declaration* data(TopDUContext* top) const;
bool operator==(const LocalIndexedDeclaration& rhs) const
{
return m_declarationIndex == rhs.m_declarationIndex;
}
uint hash() const
{
return m_declarationIndex * 23;
}
bool isValid() const
{
return m_declarationIndex != 0;
}
bool operator<(const LocalIndexedDeclaration& rhs) const
{
return m_declarationIndex < rhs.m_declarationIndex;
}
/**
* Index of the Declaration within the top context
*/
uint localIndex() const
{
return m_declarationIndex;
}
bool isLoaded(TopDUContext* top) const;
private:
uint m_declarationIndex;
};
}
Q_DECLARE_TYPEINFO(KDevelop::LocalIndexedDeclaration, Q_MOVABLE_TYPE);
#endif // KDEVPLATFORM_LOCALINDEXEDDECLARATION_H
|