X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-wsj1-test.cpp;fp=src%2Fafb-wsj1-test.cpp;h=ff74b4b95dc5da6897f944e9625beff3157e162b;hb=0f7afc5f1de4a30bb1ea823a3af608e83fc397c2;hp=0000000000000000000000000000000000000000;hpb=9a623c3aa32ec0fbf9682f37a990abd00f38da60;p=src%2Fapp-framework-binder.git diff --git a/src/afb-wsj1-test.cpp b/src/afb-wsj1-test.cpp new file mode 100644 index 00000000..ff74b4b9 --- /dev/null +++ b/src/afb-wsj1-test.cpp @@ -0,0 +1,19 @@ +#include "afb-wsj1.hpp" + +void onreply(const char *value){ + std::cout << value << std::endl; + exit(0); +} + +int main(int ac, char **av){ + char*uri=av[1]; + char*api =av[2]; + char*verb =av[3]; + char*req =av[4]; + afb::wsj1 sj1; + char *x; + sj1.connect(uri); + sj1.call(api,verb,req,onreply); + std::cin>> x; + return EXIT_SUCCESS; +} \ No newline at end of file