teleport/client/tp_assist/ts_env.h

29 lines
392 B
C
Raw Normal View History

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;
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__