blockchain , sdchain cpp sdk and demo

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by SDchain C Plus Plus Team

Revision:
8:f2a567ee3a46
Child:
10:aabd720e632c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Account.h	Thu Sep 21 02:09:04 2017 +0000
@@ -0,0 +1,26 @@
+/***********************************************************************
+ * Module:  Account.h
+ * Author:  Administrator
+ * Modified: 2017Äê8ÔÂ18ÈÕ 11:06:20
+ * Purpose: Declaration of the class Account
+ * Comment: ÕË»§
+ ***********************************************************************/
+
+#if !defined(__Account_Account_h)
+#define __Account_Account_h
+
+class Account
+{
+public:
+   std::string id;
+   std::string alias;
+   Key* keys;
+   int quorum;
+   Map<std::string,Object> tags;
+
+protected:
+private:
+
+};
+
+#endif