mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
65 lines
2.2 KiB
C++
65 lines
2.2 KiB
C++
/* This is part of KDevelop
|
|
Copyright 2007 David Nolden <david.nolden@kdevelop.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License version 2 as published by the Free Software Foundation.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "templateparameterdeclaration.h"
|
|
#include <language/duchain/identifier.h>
|
|
#include <language/duchain/declaration.h>
|
|
#include <language/duchain/duchainregister.h>
|
|
|
|
using namespace KDevelop;
|
|
|
|
REGISTER_DUCHAIN_ITEM(TemplateParameterDeclaration);
|
|
|
|
TemplateParameterDeclaration::TemplateParameterDeclaration(const KDevelop::RangeInRevision& range, DUContext* context)
|
|
: Declaration(*new TemplateParameterDeclarationData, range)
|
|
{
|
|
d_func_dynamic()->setClassId(this);
|
|
if(context)
|
|
setContext(context);
|
|
}
|
|
|
|
TemplateParameterDeclaration::~TemplateParameterDeclaration()
|
|
{
|
|
}
|
|
|
|
QualifiedIdentifier TemplateParameterDeclaration::defaultParameter() const {
|
|
return d_func()->m_defaultParameter.identifier();
|
|
}
|
|
|
|
bool TemplateParameterDeclaration::hasDefaultParameter() const
|
|
{
|
|
return d_func()->m_defaultParameter.isValid();
|
|
}
|
|
|
|
void TemplateParameterDeclaration::setDefaultParameter(const QualifiedIdentifier& str) {
|
|
d_func_dynamic()->m_defaultParameter = str;
|
|
}
|
|
|
|
TemplateParameterDeclaration::TemplateParameterDeclaration(TemplateParameterDeclarationData& data) : Declaration(data) {
|
|
}
|
|
|
|
TemplateParameterDeclaration::TemplateParameterDeclaration(const TemplateParameterDeclaration& rhs) : Declaration(*new TemplateParameterDeclarationData(*rhs.d_func())) {
|
|
d_func_dynamic()->m_defaultParameter = rhs.d_func()->m_defaultParameter;
|
|
setIsTypeAlias(true);
|
|
}
|
|
|
|
Declaration* TemplateParameterDeclaration::clonePrivate() const {
|
|
return new TemplateParameterDeclaration(*this);
|
|
}
|
|
|
|
|