summaryrefslogtreecommitdiff
path: root/algparam.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-03 10:18:44 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-03 10:18:44 +0000
commitd73287b2b051540d487b5ac6f8aea342aa5b9678 (patch)
treefbc4aeb0fdfaf634a14dd8d232e0f99b7bcd948e /algparam.h
parent80416186794d128b7d0e88af1d469352404806d0 (diff)
downloadcryptopp-d73287b2b051540d487b5ac6f8aea342aa5b9678.tar.gz
fix VC60 compile, project file line-endings, Apple GCC 4.2 compile
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@437 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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)
{