2016-12-06 17:05:56 +00:00
|
|
|
#ifndef __TS_ENV_H__
|
|
|
|
#define __TS_ENV_H__
|
|
|
|
|
|
|
|
#include <ex.h>
|
|
|
|
|
|
|
|
class TsEnv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TsEnv();
|
|
|
|
~TsEnv();
|
|
|
|
|
|
|
|
bool init(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
ex_wstr m_exec_file;
|
|
|
|
ex_wstr m_exec_path;
|
|
|
|
|
2017-10-11 00:53:01 +00:00
|
|
|
ex_wstr m_cfg_file;
|
|
|
|
// ex_wstr m_res_path;
|
|
|
|
|
|
|
|
// ex_wstr m_ssh_client_conf_file;
|
|
|
|
// ex_wstr m_scp_client_conf_file;
|
|
|
|
// ex_wstr m_telnet_client_conf_file;
|
2016-12-06 17:05:56 +00:00
|
|
|
ex_wstr m_log_path;
|
|
|
|
ex_wstr m_site_path;
|
|
|
|
ex_wstr m_tools_path;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern TsEnv g_env;
|
|
|
|
|
|
|
|
#endif // __TS_ENV_H__
|