CARMA C++
Connection.h
Go to the documentation of this file.
1 // $Id: Connection.h,v 1.1 2010/12/13 21:06:29 eml Exp $
2 
3 #ifndef SZA_UTIL_CONNECTION_H
4 #define SZA_UTIL_CONNECTION_H
5 
15 #include <string>
16 
17 namespace sza {
18  namespace util {
19 
20  class Connection {
21  public:
22 
26  Connection();
27 
31  virtual ~Connection();
32 
33  bool isReachable(std::string host);
34 
35  private:
36 
37  }; // End class Connection
38 
39  } // End namespace util
40 } // End namespace sza
41 
42 
43 
44 #endif // End #ifndef SZA_UTIL_CONNECTION_H