二期c++接口

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Heng Well

Revision:
10:aabd720e632c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Output.h	Fri Nov 03 01:07:32 2017 +0000
@@ -0,0 +1,43 @@
+/***********************************************************************
+ * Module:  Output.h
+ * Author:  Administrator
+ * Modified: 2017年9月8日 15:08:39
+ * Purpose: Declaration of the class Output
+ * Comment: 事务中包含单个输出。
+ ***********************************************************************/
+
+#if !defined(__Account_Output_h)
+#define __Account_Output_h
+
+#include <map>
+#include <string>
+#include "Object.h"
+using namespace std;
+
+
+class Output
+{
+public:
+   std::string id;
+   std::string type;
+   std::string purpose;
+   int position;
+   std::string assetId;
+   std::string assetAlias;
+   map<std::string,Object> assetDefinition;
+   map<std::string,Object> assetTags;
+   std::string assetIsLocal;
+   long amount;
+   std::string accountId;
+   std::string accountAlias;
+   map<std::string,Object> accountTags;
+   std::string controlProgram;
+   map<std::string,Object> referenceData;
+   std::string idLocal;
+
+protected:
+private:
+
+};
+
+#endif
\ No newline at end of file