From 2a200bf3a3597b320c0ddc85d4d5bd406d26d29a Mon Sep 17 00:00:00 2001 From: Pascal Junck Date: Wed, 3 Nov 2004 08:08:35 +0000 Subject: INTEGRATION: CWS sb22 (1.2.22); FILE MERGED 2004/09/20 12:03:28 sb 1.2.22.2: #109743# Fixed signatures of undefined assignment operators for abstract classes. 2004/08/20 10:40:56 sb 1.2.22.1: #109743# Improved API; disabled copy construction. --- salhelper/inc/salhelper/condition.hxx | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'salhelper') diff --git a/salhelper/inc/salhelper/condition.hxx b/salhelper/inc/salhelper/condition.hxx index ec5f6d3db623..40f489e71f96 100644 --- a/salhelper/inc/salhelper/condition.hxx +++ b/salhelper/inc/salhelper/condition.hxx @@ -2,9 +2,9 @@ * * $RCSfile: condition.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: svesik $ $Date: 2004-04-21 12:29:51 $ + * last change: $Author: pjunck $ $Date: 2004-11-03 09:08:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,6 +96,8 @@ namespace salhelper private: + Condition(Condition &); // not defined + void operator =(Condition &); // not defined osl::Mutex& m_aMutex; oslCondition m_aCondition; @@ -113,6 +115,8 @@ namespace salhelper private: + ConditionModifier(ConditionModifier &); // not defined + void operator =(ConditionModifier &); // not defined Condition& m_aCond; }; @@ -125,7 +129,15 @@ namespace salhelper ConditionWaiter(Condition& aCond); - struct timedout { }; + struct timedout { + timedout(); + + timedout(timedout const &); + + virtual ~timedout(); + + timedout & operator =(timedout const &); + }; ConditionWaiter(Condition& aCond,sal_uInt32 milliSec) throw( @@ -137,6 +149,8 @@ namespace salhelper private: + ConditionWaiter(ConditionWaiter &); // not defined + void operator =(ConditionWaiter &); // not defined Condition& m_aCond; }; -- cgit