diff --git a/language/duchain/types/integraltype.h b/language/duchain/types/integraltype.h index 5b20139bc..69f070282 100644 --- a/language/duchain/types/integraltype.h +++ b/language/duchain/types/integraltype.h @@ -1,128 +1,128 @@ /* This file is part of KDevelop Copyright 2006 Roberto Raggi Copyright 2006-2008 Hamish Rodda Copyright 2007-2008 David Nolden 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. */ #ifndef KDEVPLATFORM_INTEGRALTYPE_H #define KDEVPLATFORM_INTEGRALTYPE_H #include "abstracttype.h" #include "typesystemdata.h" namespace KDevelop { class IntegralTypeData; class IndexedString; /** * \short A type representing inbuilt data types. * * IntegralType is used to represent types which are native to a programming languge, * such as (e.g.) int, float, double, char, bool etc. */ class KDEVPLATFORMLANGUAGE_EXPORT IntegralType: public AbstractType { public: typedef TypePtr Ptr; /** * Enumeration of frequently used integral types. * If your language has another integral type not listed here, * you can create custom types staring from TypeLanguageSpecific. */ enum CommonIntegralTypes { TypeVoid, TypeNone, TypeNull, TypeChar, TypeBoolean, TypeByte, TypeSbyte, TypeShort, TypeInt, TypeLong, TypeFloat, TypeDouble, TypeWchar_t, TypeString, TypeMixed, TypeChar16_t, TypeChar32_t, TypeLanguageSpecific = 200 }; /// Default constructor explicit IntegralType(uint type = TypeNone); /// Copy constructor. \param rhs type to copy IntegralType(const IntegralType& rhs); /// Constructor using raw data. \param data internal data. explicit IntegralType(IntegralTypeData& data); /// Destructor virtual ~IntegralType(); /** * Access the integral type * - * \returns the type's modifiers. + * \returns the type's data type. */ uint dataType() const; /** * Set the type's data type. * * \param dataType data type of this type. */ void setDataType(uint dataType); /** * TODO: think of a way to make @c toString work properly for custom data types * right now you need to create a custom type and overload it... */ QString toString() const override; uint hash() const override; WhichType whichType() const override; AbstractType* clone() const override; bool equals(const AbstractType* rhs) const override; enum { Identity = 2 }; typedef IntegralTypeData Data; protected: void accept0 (TypeVisitor *v) const override; TYPE_DECLARE_DATA(IntegralType) }; template<> inline IntegralType* fastCast(AbstractType* from) { if(!from || from->whichType() != AbstractType::TypeIntegral) return nullptr; else return static_cast(from); } } #endif