// *****************************************************************************
// 版权所有(C)2023~2099 上海骄成超声波技术有限公司
// 保留所有权利
// *****************************************************************************
// 作者 : 杨坚
// 版本 : 1.0
// 功能说明:
//          qt 通用控件设置
// *****************************************************************************
#ifndef JQCOMMON_H
#define JQCOMMON_H

#include <QObject>
#include <QLineEdit>

class JQCommon : public QObject
{
    Q_OBJECT
public:
    JQCommon();

    /**设置控件范围 int double flate
     */
    static void SetQLineEditLimit(QLineEdit* pLineEdit);
};

#endif // JQCOMMON_H