summaryrefslogtreecommitdiffhomepage
path: root/qrcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'qrcode.h')
-rw-r--r--qrcode.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/qrcode.h b/qrcode.h
new file mode 100644
index 0000000..f37c318
--- /dev/null
+++ b/qrcode.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <string>
+
+namespace QRCode
+{
+ void init();
+
+ // returns PNG file contents
+ std::string getQRCode(const std::string& data);
+}