summaryrefslogtreecommitdiff
path: root/salhelper/inc
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-03 08:08:35 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-03 08:08:35 +0000
commit2a200bf3a3597b320c0ddc85d4d5bd406d26d29a (patch)
treeed8f3cba086ffdaa7cbc5335d4b452b8a77452b4 /salhelper/inc
parent8a33ebf9a589d21540120de82c8ff5dee2008889 (diff)
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.
Diffstat (limited to 'salhelper/inc')
-rw-r--r--salhelper/inc/salhelper/condition.hxx20
1 files changed, 17 insertions, 3 deletions
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;
};