blockchain , sdchain cpp sdk and demo

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by SDchain C Plus Plus Team

Input.h

Committer:
webmaster
Date:
2018-08-08
Revision:
18:ec6cd7cfe3f8
Parent:
10:aabd720e632c

File content as of revision 18:ec6cd7cfe3f8:

/***********************************************************************
 * 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