diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 19:13:58 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 19:13:58 +0100 |
commit | 635e09f711091d5b35281302be16da82503f0f78 (patch) | |
tree | 2e21380cdfff05528851043be9a98756438c1ebf | |
parent | Expose Blob operator== (diff) | |
download | libdbpp-635e09f711091d5b35281302be16da82503f0f78.tar.bz2 libdbpp-635e09f711091d5b35281302be16da82503f0f78.tar.xz libdbpp-635e09f711091d5b35281302be16da82503f0f78.zip |
Expose stream << Blob operator in test lib
-rw-r--r-- | libdbpp/testCore.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libdbpp/testCore.h b/libdbpp/testCore.h index eb53c43..c51e2f9 100644 --- a/libdbpp/testCore.h +++ b/libdbpp/testCore.h @@ -25,6 +25,10 @@ class DLL_PUBLIC TestCore { }; /// @endcond +DLL_PUBLIC +std::ostream & +operator<<(std::ostream & s, const Blob b); + } #endif |