二期c++接口

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Heng Well

Revision:
12:1b24ea479a59
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Order.h	Wed May 16 13:46:01 2018 +0000
@@ -0,0 +1,18 @@
+#if !defined(__Order_h)
+#define __Order_h
+#include <string>
+#include "MbedJSONValue.h"
+#include "Payment.h"
+#include "Client.h"
+using namespace std;
+class Order :public Payment
+{
+public:
+	bool SetJsonBody(MbedJSONValue& out, string secretIn, string typeIn, string currencypayIn, string cntpartypayIn, string valuepayIn, string currencygetIn, string cntpartygetIn, string valuegetIn);
+	string PostOrder(MbedJSONValue& in, string sUrl, string sAddr, string sequence);
+protected:
+private:
+private:
+	Client client;
+};
+#endif