summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/framework/imutex.hxx20
1 files changed, 5 insertions, 15 deletions
diff --git a/include/framework/imutex.hxx b/include/framework/imutex.hxx
index 7268db9d0737..4b4668f8ee04 100644
--- a/include/framework/imutex.hxx
+++ b/include/framework/imutex.hxx
@@ -24,29 +24,19 @@
namespace framework{
-/*-************************************************************************************************************
- @descr We need this interface to support using of different mutex implementations in a generic way.
-*//*-*************************************************************************************************************/
+/// Interface to support different mutex implementations in a generic way.
class SAL_NO_VTABLE IMutex
{
-
- // public methods
-
public:
-
- /*-****************************************************************************************************
- @descr These functions must be supported by a derived class!
- acquire() -try to register thread
- release() -unregister thread
- *//*-*****************************************************************************************************/
+ /// try to register thread
virtual void acquire() = 0;
+ /// unregister thread
virtual void release() = 0;
protected:
~IMutex() {}
-}; // class IMutex
-
-} // namespace framework
+};
+}
#endif // INCLUDED_FRAMEWORK_IMUTEX_HXX