账单记录器迁移。
This commit is contained in:
19
statistic.h
Normal file
19
statistic.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef STATISTIC_H
|
||||
#define STATISTIC_H
|
||||
|
||||
#include "SqlOpr.h"
|
||||
|
||||
class Statistic
|
||||
{
|
||||
public:
|
||||
Statistic(std::unique_ptr<RepaySqlOpr>& repaySqlOpr);
|
||||
~Statistic();
|
||||
|
||||
public:
|
||||
void Calculate(const AccountRecordList& list);
|
||||
|
||||
private:
|
||||
std::unique_ptr<RepaySqlOpr>& repaySqlOpr_;
|
||||
};
|
||||
|
||||
#endif // STATISTIC_H
|
||||
Reference in New Issue
Block a user