/* -*- 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_ASTCONSTANT_HXX #define INCLUDED_IDLC_INC_ASTCONSTANT_HXX #include "astdeclaration.hxx" #include "astexpression.hxx" namespace typereg { class Writer; } class AstConstant : public AstDeclaration { public: AstConstant(const ExprType type, const NodeType nodeType, AstExpression* pExpr, const OString& name, AstScope* pScope); AstConstant(const ExprType type, AstExpression* pExpr, const OString& name, AstScope* pScope); virtual ~AstConstant() override; AstExpression* getConstValue() { return m_pConstValue; } ExprType getConstValueType() const { return m_constValueType; } bool dumpBlob( typereg::Writer & rBlob, sal_uInt16 index, bool published); private: AstExpression* m_pConstValue; const ExprType m_constValueType; }; #endif // INCLUDED_IDLC_INC_ASTCONSTANT_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -6-2'>distro/cib/libreoffice-6-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/editeng/numitem.hxx
AgeCommit message (Expand)Author
2022-08-12related tdf#150197: use SetListFormat or SetPrefix/SuffixJustin Luth
2021-09-11clang:optin.performance.Padding in svx,editengNoel Grandin
2021-08-22don't store vcl::Font with unique_ptrNoel Grandin
2021-07-26sw: use followby parameter of outline in Chapter fieldVasily Melenchuk
2021-07-26tdf#143424: support for "Chapter number without separator"Vasily Melenchuk
2021-06-30reduce cost of allocating and copying SvxNumRuleNoel Grandin
2021-06-29Fix typosAndrea Gelmini
2021-06-29new ODF numbered list parameter loext:num-list-formatVasily Melenchuk
2021-06-01loplugin:noexceptmoveStephan Bergmann
2021-05-31no need to allocate SvxNumRule separately in SvxNumBulletItemNoel Grandin
2021-05-02sal_uLong->sal_Int32 in SvxNumberFormatNoel Grandin
2021-01-26tdf#139147 sw outline UI: allow clearing of custom list formatJustin Luth
2020-10-20use tools::Long in editengNoel
2020-09-22tdf#132970 SMP bullets mangledCaolán McNamara
2020-05-17Fix typosAndrea Gelmini
2020-05-17tdf#120394: list format string can be emptyVasily Melenchuk
2020-05-03use more compact namespace syntax in /includeNoel Grandin
2020-04-27tdf#116883: sw: support for lists level format stringVasily Melenchuk
2020-03-29Fix is_typed_flags for SvxNumRuleFlags (editeng)Julien Nabet
2020-03-03sw doc model xml dump: show numbering typeMiklos Vajna
2019-12-12use covariant return type for SfxPoolItem::CloneCaolán McNamara
2019-10-29loplugin:finalclasses in editengNoel Grandin
2019-10-17Remove some memset callsMike Kaganski