二期c++接口

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Heng Well

Output.h

Committer:
MrAI
Date:
2018-06-08
Revision:
17:82d09b5a9189
Parent:
10:aabd720e632c

File content as of revision 17:82d09b5a9189:

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