/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_IDLC_INC_ASTENUM_HXX #define INCLUDED_IDLC_INC_ASTENUM_HXX #include "asttype.hxx" #include "astscope.hxx" #include "astconstant.hxx" class AstEnum : public AstType , public AstScope { public: AstEnum(const OString& name, AstScope* pScope); virtual ~AstEnum() override; sal_Int32 getEnumValueCount() { return m_enumValueCount++; } AstConstant* checkValue(AstExpression* pExpr); virtual bool dump(RegistryKey& rKey) override; private: sal_Int32 m_enumValueCount; }; #endif // INCLUDED_IDLC_INC_ASTENUM_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ b/libreoffice-5-3'>distro/cib/libreoffice-5-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/svx/xflhtit.hxx
AgeCommit message (Expand)Author
2024-02-26svx: prefix members of XFillHatchItemMiklos Vajna
2021-06-19loplugin:finalclassesNoel Grandin
2020-10-26switching long to a 64-bit type on 64-bit windowsNoel
2020-02-02tdf#128302: Split SVXCORE_DLLPUBLIC from SVX_DLLPUBLICStephan Bergmann
2019-12-12use covariant return type for SfxPoolItem::CloneCaolán McNamara
2019-12-03remove some useless comment linesNoel Grandin
2019-07-03tdf#42949 Fix IWYU warnings in include/svx/x*Gabor Kelemen
2019-05-07tdf#63640 FILEOPEN/FILESAVE: particular .odt loads/saves very slow, part2Noel Grandin
2019-04-29tdf#63640 FILEOPEN/FILESAVE: particular .odt loads/saves very slow, part1Noel Grandin
2018-12-13use unique_ptr in checkForUniqueItemNoel Grandin
2017-08-10WIP: Removing unused SfxItemPool serialisation from svxVarun Dhall
2017-07-31make IntlWrapper arg to GetPresentation non-implicit and non-optionalCaolán McNamara
2017-05-05loplugin:checkunusedparams in svx(part4)Noel Grandin
2017-03-29loplugin:unusedmethodsNoel Grandin
2016-08-19Resolves: coverity#705366 Mixing enum typesCaolán McNamara
2016-01-13loplugin:unusedmethods unused return value in include/svlNoel Grandin
2015-11-115th step to remove tools/rtti.hxxOliver Specht
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-23com::sun::star->css in include/sot to include/typelibNoel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-08-14remove default value from SfxPoolItem::PutValueNoel Grandin