fnconvert.h 230 B

1234567891011121314151617
  1. #ifndef FNCONVERT_H
  2. #define FNCONVERT_H
  3. #include <QObject>
  4. class FnConvert : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit FnConvert(QObject* parent = nullptr);
  9. signals:
  10. };
  11. QString intToStr(int i);
  12. #endif // FNCONVERT_H