You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
554 B
C++
21 lines
554 B
C++
#pragma once
|
|
#include "workcmd.h"
|
|
|
|
|
|
//管理进度条的cmd
|
|
class CWorkCmdTimingProgress :public CWorkCmd
|
|
{
|
|
public:
|
|
CWorkCmdTimingProgress();
|
|
~CWorkCmdTimingProgress(void);
|
|
virtual bool Excute();
|
|
virtual void WirteLog();
|
|
CString GetWorkCmdInfoStr();
|
|
void SetTimingProgressTime(int ProgressTime){m_ProgressTime = ProgressTime;};
|
|
void SetTimingProgressShowInfo(CString s){m_ProgressShowInfo = s;};
|
|
private:
|
|
CString m_ProgressShowInfo;//进度条显示的内容
|
|
int m_ProgressTime;//进度条的时间ms
|
|
};
|
|
|