DDS  ver. 3.4
local_types.h
Go to the documentation of this file.
1 // Copyright 2014 GSI, Inc. All rights reserved.
2 //
3 //
4 //
5 #ifndef LOCAL_TYPES_H
6 #define LOCAL_TYPES_H
7 #include <boost/function.hpp>
8 
9 namespace dds
10 {
11  namespace ssh_cmd
12  {
13  typedef boost::function<void(const std::string&, const std::string&, bool)> log_func_t;
14 
15  struct SWNOptions
16  {
18  : m_logs(false)
19  , m_fastClean(false)
20  {
21  }
22 
23  bool m_logs;
25  std::string m_scriptName;
26  };
27  } // namespace ssh_cmd
28 } // namespace dds
29 #endif
bool m_fastClean
Definition: local_types.h:24
bool m_logs
Definition: local_types.h:23
boost::function< void(const std::string &, const std::string &, bool)> log_func_t
Definition: local_types.h:13
std::string m_scriptName
Definition: local_types.h:25
Definition: AgentConnectionManager.h:13
Definition: local_types.h:15
SWNOptions()
Definition: local_types.h:17