aboutsummaryrefslogtreecommitdiffstats
path: root/src/bls_if.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bls_if.cpp')
-rw-r--r--src/bls_if.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bls_if.cpp b/src/bls_if.cpp
index 7576c93..c64e868 100644
--- a/src/bls_if.cpp
+++ b/src/bls_if.cpp
@@ -57,6 +57,10 @@ void blsIdDestroy(blsId *id)
{
delete (bls::Id*)id;
}
+void blsIdPut(const blsId *id)
+{
+ std::cout << *(const bls::Id*)id << std::endl;
+}
void blsIdCopy(blsId *dst, const blsId *src)
{
*((bls::Id*)dst) = *((const bls::Id*)src);