summaryrefslogtreecommitdiff
path: root/algparam.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-03-20 01:24:12 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-03-20 01:24:12 +0000
commitd23a489940499bd6c634a1cb0a9875f094f8a850 (patch)
treef85b3bed971083e90e5f3dbb84539ea4ba0359e9 /algparam.cpp
parentb3517523a738277cfe22428bd757833e69abb66e (diff)
downloadcryptopp-d23a489940499bd6c634a1cb0a9875f094f8a850.tar.gz
various changes for 5.1
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@38 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'algparam.cpp')
-rw-r--r--algparam.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/algparam.cpp b/algparam.cpp
index 1b980b6..1f49db6 100644
--- a/algparam.cpp
+++ b/algparam.cpp
@@ -2,19 +2,9 @@
#include "pch.h"
#include "algparam.h"
-#include "integer.h"
NAMESPACE_BEGIN(CryptoPP)
-const std::type_info & IntegerTypeId()
-{
- static const std::type_info &s_typeidInteger = typeid(Integer);
- return s_typeidInteger;
-}
-
-void AssignIntToInteger(void *pInteger, const void *pInt)
-{
- *reinterpret_cast<Integer *>(pInteger) = *reinterpret_cast<const int *>(pInt);
-}
+bool (*AssignIntToInteger)(const std::type_info &valueType, void *pInteger, const void *pInt) = NULL;
NAMESPACE_END