Files
GostGenerator/model/pageinfo.h
T

14 lines
271 B
C

#ifndef PAGEINFO_H
#define PAGEINFO_H
#include <QRectF>
// Структура для хранения информации о странице
struct PageInfo {
QRectF pageRect;
int pageNumber;
int totalPages;
bool isFirstPage;
};
#endif // PAGEINFO_H