summaryrefslogtreecommitdiff
path: root/algparam.h
diff options
context:
space:
mode:
Diffstat (limited to 'algparam.h')
-rw-r--r--algparam.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/algparam.h b/algparam.h
index 5728cce..f87c93d 100644
--- a/algparam.h
+++ b/algparam.h
@@ -287,6 +287,7 @@ public:
protected:
friend class AlgorithmParameters;
+ void operator=(const AlgorithmParametersBase& rhs); // assignment not allowed, declare this for VC60
virtual void AssignValue(const char *name, const std::type_info &valueType, void *pValue) const =0;
virtual void MoveInto(void *p) const =0; // not really const
@@ -338,6 +339,8 @@ public:
~AlgorithmParameters();
+ AlgorithmParameters & operator=(const AlgorithmParameters &x);
+
template <class T>
AlgorithmParameters & operator()(const char *name, const T &value, bool throwIfNotUsed)
{