Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef ROSCPP_WALL_TIMER_OPTIONS_H
00029 #define ROSCPP_WALL_TIMER_OPTIONS_H
00030
00031 #include "common.h"
00032 #include "ros/forwards.h"
00033
00034 namespace ros
00035 {
00036
00040 struct ROSCPP_DECL WallTimerOptions
00041 {
00042 WallTimerOptions()
00043 : period(0.1)
00044 , callback_queue(0)
00045 , oneshot(false)
00046 , autostart(true)
00047 {
00048 }
00049
00050
00051
00052
00053
00054 WallTimerOptions(WallDuration _period, const WallTimerCallback& _callback, CallbackQueueInterface* _queue,
00055 bool oneshot = false, bool autostart = true)
00056 : period(_period)
00057 , callback(_callback)
00058 , callback_queue(_queue)
00059 , oneshot(oneshot)
00060 , autostart(autostart)
00061 {}
00062
00063 WallDuration period;
00064 WallTimerCallback callback;
00065
00066 CallbackQueueInterface* callback_queue;
00067
00076 VoidConstPtr tracked_object;
00077
00078 bool oneshot;
00079 bool autostart;
00080 };
00081
00082
00083 }
00084
00085 #endif
00086
roscpp
Author(s): Morgan Quigley mquigley@cs.stanford.edu, Josh Faust jfaust@willowgarage.com, Brian Gerkey gerkey@willowgarage.com, Troy Straszheim straszheim@willowgarage.com
autogenerated on Sat Dec 28 2013 17:35:52