Newer
Older
AutoCalibrationXC / utils / PageUtil.h
tanyue 28 days ago 265 bytes 20250717 初始提交
#ifndef PAGEUTIL_H
#define PAGEUTIL_H


class PageUtil
{
public:
    PageUtil();
    ~PageUtil();

    int tableRowCount = 15;
    int currentPage = 0;
    int totalPage = 0;
    int totalCount = 0;

    void calcTotalPage(int totalCount);
};

#endif // PAGEUTIL_H