| 123456789101112131415161718192021222324252627282930 |
- /****************************************
- 自动启动头文件
- 2017.6.6
- ****************************************/
- #pragma once
- #include <vector>
- using namespace std;
- class AutoStart
- {
- public:
- AutoStart(void);
- ~AutoStart(void);
- public:
- static AutoStart* GetInstance();
- bool StartAll();
- private:
-
- void ReadDataFromtxt();
- private:
- int m_Conut; //exe数量
- int m_TimeDelay; //程序启动间隔时间
- int m_PowerTimeDelay; //开启后延迟启动时间
- vector<CString> m_ExeNameVec; //exe列表
- };
|