From: Guilherme Maciel Ferreira Date: Mon, 2 May 2011 15:58:01 +0000 (+0200) Subject: Defining the type PingSchedulerList as a vector of PingSchedulerItem X-Git-Tag: v1.0~44 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=5624490d3da2442cfa69c0848cbe28c1bc3cc8b1;p=pingcheck Defining the type PingSchedulerList as a vector of PingSchedulerItem - to keep the standard - same benefits as HostList --- 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 */