| 123456789101112131415161718 |
- #pragma once
- #include "FileLocationInfo.h"
- #include "ShortCutInfo.h"
- #include "reginfo.h"
- class CInstallXmlInfo
- {
- public:
- CInstallXmlInfo(CString xml);
- CString sysPath,corpPath,productPath,appPath,dataPath,cachePath,tempPath,logPath;
- CString programGroup;
- CStringArray installPaths;
- CArray<CFileLocationInfo> locations;
- CArray<CShortCutInfo> shortcuts;
- CRegInfo regInfo;
- ~CInstallXmlInfo(void);
- private:
- CString GetSysPath(CString sEnvironmentName);
- };
|