Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface mbed-rtos mbed uniqueCPUID
Fork of bcsdk by
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
