From kde-commits Sat May 31 22:52:10 2008 From: David Nolden Date: Sat, 31 May 2008 22:52:10 +0000 To: kde-commits Subject: KDE/kdevplatform/language/duchain Message-Id: <1212274330.835819.20826.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121227434313213 SVN commit 815015 by zwabel: Remove unused stuff M +3 -12 classfunctiondeclaration.h --- trunk/KDE/kdevplatform/language/duchain/classfunctiondeclaration.h #815014:815015 @@ -50,21 +50,12 @@ bool isConstructor() const; bool isDestructor() const; bool isConversionFunction() const; +// bool isExternalDefinition() const; //Whether this declaration is an external definition of a class-member(Mainly for C++) + void setIsExternalDefinition(bool); + virtual QString toString() const; - /** - * Returns the default-parameters that are set. The last default-parameter matches the last - * argument of the function, but the returned list will only contain default-values for those - * arguments that have one, for performance-reasons. - * - * So the list may be empty or smaller than the list of function-arguments. - * */ - const QList& defaultParameters() const; - void addDefaultParameter(const QString& str); - - //bool isSimilar(KDevelop::CodeItem *other, bool strict = true) const; - virtual void setAbstractType(AbstractType::Ptr type); virtual Declaration* clone() const;