diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-02 19:59:41 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-02 19:59:41 +0100 |
commit | 992a1b3d2653ed527c2a301f80140bc35d84e832 (patch) | |
tree | 73981b8a28a0368f2b74b0369b1ecf649c908f77 /qrcode.h | |
parent | 20ceb53ec1c1bc18face8e831292dfe81fed3817 (diff) |
Switch from ImageMagick to GraphicsMagick for deterministic data; added tests
Diffstat (limited to 'qrcode.h')
-rw-r--r-- | qrcode.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2,4 +2,10 @@ #include <string> -std::string getQRCode(const std::string& data); +namespace QRCode +{ + void init(); + + // returns PNG file contents + std::string getQRCode(const std::string& data); +} |