From 5624490d3da2442cfa69c0848cbe28c1bc3cc8b1 Mon Sep 17 00:00:00 2001 From: Guilherme Maciel Ferreira Date: Mon, 2 May 2011 17:58:01 +0200 Subject: [PATCH] Defining the type PingSchedulerList as a vector of PingSchedulerItem - to keep the standard - same benefits as HostList --- src/host/pingscheduler.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/host/pingscheduler.h b/src/host/pingscheduler.h index c01cf23..be41dab 100644 --- a/src/host/pingscheduler.h +++ b/src/host/pingscheduler.h @@ -2,6 +2,7 @@ #define PINGSCHEDULER_H #include +#include #include #include @@ -74,4 +75,10 @@ private: typedef boost::shared_ptr PingSchedulerItem; +//----------------------------------------------------------------------------- +// PingSchedulerList +//----------------------------------------------------------------------------- + +typedef std::vector< PingSchedulerItem > PingSchedulerList; + #endif /* PINGSCHEDULER_H */ -- 1.7.1