/* -*- 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 . */ /* * This file is part of LibreOffice published API. */ #ifndef INCLUDED_CPPUHELPER_BASEMUTEX_HXX #define INCLUDED_CPPUHELPER_BASEMUTEX_HXX #include "osl/mutex.hxx" namespace cppu { /** base class for all classes who want derive from cppu::WeakComponentImplHelperXX. Implementation classes have first to derive from BaseMutex and then from cppu::WeakComponentImplHelperXX to ensure that the BaseMutex is completely initialized when the mutex is used to initialize the cppu::WeakComponentImplHelperXX */ class SAL_WARN_UNUSED BaseMutex { protected: mutable ::osl::Mutex m_aMutex; }; } #endif // INCLUDED_CPPUHELPER_BASEMUTEX_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ istro/cib/libreoffice-6-1'>distro/cib/libreoffice-6-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sal/qa/osl/pipe/osl_Pipe.cxx
AgeCommit message (Expand)Author
2016-11-21remove dep on unotest from osl_Pipe testDavid Tardon
2016-10-01Fix typosAndrea Gelmini
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
2016-07-19clang-tidy performance-unnecessary-value-param in salStephan Bergmann
2016-06-17CppunitTest_sal_rtl_cipher: fix loplugin:cppunitassertequals warningsMiklos Vajna
2016-04-18clean-up: unused using declarations and includesJochen Nitschke
2016-03-07tdf#97703 removed empty setUp/tearDown methodsChirag Manwani
2016-01-10Fix typosAndrea Gelmini
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-11-03Solved CID 1338058 and CID 1338057jan iversen
2015-11-02Fix CppunitTest_sal_osl_pipeStephan Bergmann
2015-10-30Various loplugin clean upStephan Bergmann
2015-09-30Fix typosAndrea Gelmini
2014-04-03Kill superfluous vertical whitespaceTor Lillqvist
2014-02-23Remove unneccessary commentsAlexander Wilms
2013-03-04doubled includesThomas Arnhold
2013-02-22Fix misspellings detected by https://github.com/lyda/misspell-checkTor Lillqvist
2012-11-21re-base on ALv2 code. Includes:Michael Meeks