#include <string>
#include <boost/function.hpp>
+#include <boost/shared_ptr.hpp>
//-----------------------------------------------------------------------------
// Pinger
};
+//-----------------------------------------------------------------------------
+// PingerItem
+//-----------------------------------------------------------------------------
+
+typedef boost::shared_ptr<Pinger> PingerItem;
+
#endif // PINGER_H
/// Object responsible to evaluate the status of the host
HostStatus HostAnalyzer;
/// Internal boost pinger object
- boost::shared_ptr<Pinger> Ping;
+ PingerItem Ping;
/// Thread object
boost::thread Thread;