CQREncode.h 221 B

123456789101112131415
  1. #ifndef CQRENCODE_H
  2. #define CQRENCODE_H
  3. #include <QPixmap>
  4. class CQREncode
  5. {
  6. public:
  7. static QPixmap GenerateQRcode(QString tempstr, int nWidth);
  8. private:
  9. CQREncode();
  10. ~CQREncode();
  11. };
  12. #endif // CQRENCODE_H