blockchain , sdchain cpp sdk and demo

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by SDchain C Plus Plus Team

Revision:
8:f2a567ee3a46
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Balance.h	Thu Sep 21 02:09:04 2017 +0000
@@ -0,0 +1,27 @@
+/***********************************************************************
+ * Module:  Balance.h
+ * Author:  Administrator
+ * Modified: 2017Äê8ÔÂ31ÈÕ 15:51:18
+ * Purpose: Declaration of the class Balance
+ * Comment: ±íʾ¶ÔÖ¸¶¨²ÎÊýÇóºÍµÄÌض¨×ʲú£¨»ò×ʲú£©µÄÓà¶î¡£
+ ***********************************************************************/
+
+#if !defined(__Account_Balance_h)
+#define __Account_Balance_h
+
+class Balance
+{
+public:
+   int builder(void);
+   long getAmount(void);
+   void setAmount(long newAmount);
+
+   map<std::string,std::string> sumBy;
+   long amount;
+
+protected:
+private:
+
+};
+
+#endif