/* -*- 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/. */ #ifndef INCLUDED_SC_INC_COLUMNSET_HXX #define INCLUDED_SC_INC_COLUMNSET_HXX #include "types.hxx" #include #include #include namespace sc { /** * Simple container to keep track of sheet - column pair. */ class ColumnSet { typedef std::unordered_set ColsType; typedef std::unordered_map TabsType; TabsType maTabs; public: void set(SCTAB nTab, SCCOL nCol); void getColumns(SCTAB nTab, std::vector& rCols) const; bool hasTab( SCTAB nTab ) const; bool empty() const; }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ro/allotropia/zeta-24-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2014-09-14Move oox/drawingml/*hxx internal headers to oox/inc.Matúš Kukan
Do not export LinePropertiesContext class as visible. And move GraphicProperties to its own header. Change-Id: I047c181e9f2adc7e59885f59663ea56c7eb898ed