Files
SimpleAccount/statistic.h
2026-02-27 12:29:27 +08:00

19 lines
309 B
C++

#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