aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-wsj1-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/afb-wsj1-test.cpp')
-rw-r--r--src/afb-wsj1-test.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/afb-wsj1-test.cpp b/src/afb-wsj1-test.cpp
new file mode 100644
index 00000000..059c845b
--- /dev/null
+++ b/src/afb-wsj1-test.cpp
@@ -0,0 +1,16 @@
+#include "afb-wsj1.hpp"
+
+void onreply(const char *value){
+ std::cout<< *value<<std::endl;
+ system("PAUSE");
+}
+
+int main(){
+ std::string uri,api,verb, req;
+ char * request = (char*)req.c_str();
+ afb::wsj1 sj1;
+ sj1.connect(uri);
+ sj1.call(api.c_str(),verb.c_str(),request,onreply);
+
+ return EXIT_SUCCESS;
+} \ No newline at end of file