#ifndef UTILS_H #define UTILS_H #include <vector> #include <QFont> #include <QString> #include <QRect> typedef std::vector<int> IntList; typedef std::vector<IntList> IntMatrix; QFont fit_font_with_text(QFont font, QString text, QRect rect); #endif // UTILS_H 添加代码注释
时间: 2024-04-01 14:34:20 浏览: 71
C++ 中pragma once 与 #ifndef _XXX_H_ #define _XXX_H_的区别
5星 · 资源好评率100%
// 防止头文件重复包含
#ifndef UTILS_H
#define UTILS_H
// 引入需要用到的头文件
#include <vector>
#include <QFont>
#include <QString>
#include <QRect>
// 定义 IntList 和 IntMatrix 类型
typedef std::vector<int> IntList;
typedef std::vector<IntList> IntMatrix;
// 声明 fit_font_with_text 函数
QFont fit_font_with_text(QFont font, QString text, QRect rect);
// 结束头文件定义
#endif // UTILS_H
阅读全文