二期c++接口

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Heng Well

Balance.h

Committer:
MrAI
Date:
2018-06-08
Revision:
17:82d09b5a9189
Parent:
8:f2a567ee3a46

File content as of revision 17:82d09b5a9189:

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