Branch libreoffice-5-0-4
[LibreOffice.git] / include / framework / imutex.hxx
blob7268db9d07378dc2136dd98f3a30cc8fb6d5c1a4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_FRAMEWORK_IMUTEX_HXX
21 #define INCLUDED_FRAMEWORK_IMUTEX_HXX
23 #include <sal/types.h>
25 namespace framework{
27 /*-************************************************************************************************************
28 @descr We need this interface to support using of different mutex implementations in a generic way.
29 *//*-*************************************************************************************************************/
30 class SAL_NO_VTABLE IMutex
33 // public methods
35 public:
37 /*-****************************************************************************************************
38 @descr These functions must be supported by a derived class!
39 acquire() -try to register thread
40 release() -unregister thread
41 *//*-*****************************************************************************************************/
42 virtual void acquire() = 0;
43 virtual void release() = 0;
45 protected:
46 ~IMutex() {}
47 }; // class IMutex
49 } // namespace framework
51 #endif // INCLUDED_FRAMEWORK_IMUTEX_HXX
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */