BaseCommonLibrary/ShowProessAbstract.h

15 lines
287 B
C
Raw Permalink Normal View History

2025-05-27 15:05:39 +00:00
#ifndef __SHOWPROCESSABSTRACT_H__
#define __SHOWPROCESSABSTRACT_H__
#include "BaseConstVariable.h"
#include <QString>
class BASECONSTVARIABLEAPI ShowProessAbstract {
public:
virtual void showProcess(double precent, QString tip);
virtual void showToolInfo(QString tip);
};
#endif