#ifndef __TS_ENV_H__ #define __TS_ENV_H__ #include class TsEnv { public: TsEnv(); ~TsEnv(); bool init(void); public: ex_wstr m_exec_file; ex_wstr m_exec_path; ex_wstr m_ssh_client_conf_file; ex_wstr m_scp_client_conf_file; ex_wstr m_telnet_client_conf_file; ex_wstr m_log_path; ex_wstr m_site_path; ex_wstr m_tools_path; }; extern TsEnv g_env; #endif // __TS_ENV_H__