blockchain , sdchain cpp sdk and demo

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by SDchain C Plus Plus Team

Revision:
10:aabd720e632c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Input.h	Fri Nov 03 01:07:32 2017 +0000
@@ -0,0 +1,40 @@
+/***********************************************************************
+ * Module:  Input.h
+ * Author:  Administrator
+ * Modified: 2017年9月8日 14:57:48
+ * Purpose: Declaration of the class Input
+ * Comment: 单个输入包括在事务中。
+ ***********************************************************************/
+
+#if !defined(__Account_Input_h)
+#define __Account_Input_h
+
+#include <map>
+#include <string>
+#include "Object.h"
+using namespace std;
+
+class Input
+{
+public:
+   std::string type;
+   std::string assetId;
+   std::string assetAlias;
+   map<std::string,Object> assetDefinition;
+   map<std::string,Object> assetTags;
+   std::string assetIsLocal;
+   long amount;
+   std::string spentOutputId;
+   std::string accountId;
+   std::string accountAlias;
+   map<std::string,Object> accountTags;
+   std::string issuanceProgram;
+   map<std::string,Object> referenceData;
+   std::string isLocal;
+
+protected:
+private:
+
+};
+
+#endif
\ No newline at end of file