Kaydet (Commit) ec47e78f authored tarafından Thorsten Behrens's avatar Thorsten Behrens

framework: cleanup redundant comments

Change-Id: Id4cb444a1e21ec0ee94a2604c15bc43220a7b571
üst 30af3971
...@@ -24,29 +24,19 @@ ...@@ -24,29 +24,19 @@
namespace framework{ namespace framework{
/*-************************************************************************************************************ /// Interface to support different mutex implementations in a generic way.
@descr We need this interface to support using of different mutex implementations in a generic way.
*//*-*************************************************************************************************************/
class SAL_NO_VTABLE IMutex class SAL_NO_VTABLE IMutex
{ {
// public methods
public: public:
/// try to register thread
/*-****************************************************************************************************
@descr These functions must be supported by a derived class!
acquire() -try to register thread
release() -unregister thread
*//*-*****************************************************************************************************/
virtual void acquire() = 0; virtual void acquire() = 0;
/// unregister thread
virtual void release() = 0; virtual void release() = 0;
protected: protected:
~IMutex() {} ~IMutex() {}
}; // class IMutex };
}
} // namespace framework
#endif // INCLUDED_FRAMEWORK_IMUTEX_HXX #endif // INCLUDED_FRAMEWORK_IMUTEX_HXX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment