camera_firewire
CameraViewerTask.hpp
Go to the documentation of this file.
1 #ifndef CAMERA_FIREWIRE_CAMERAVIEWERTASK_TASK_HPP
2 #define CAMERA_FIREWIRE_CAMERAVIEWERTASK_TASK_HPP
3 
4 #include "camera_firewire/CameraViewerTaskBase.hpp"
5 
6 
7 namespace RTT
8 {
9  class NonPeriodicActivity;
10 }
11 
12 
13 namespace camera_firewire {
14  class CameraViewerTask : public CameraViewerTaskBase
15  {
16  friend class CameraViewerTaskBase;
17  protected:
18 
19 
20 
21  public:
22  CameraViewerTask(std::string const& name = "camera_firewire::CameraViewerTask", TaskCore::TaskState initial_state = Stopped);
23 
24  RTT::NonPeriodicActivity* getNonPeriodicActivity();
25 
39  // bool configureHook();
40 
46  // bool startHook();
47 
64  // void updateHook();
65 
66 
73  // void errorHook();
74 
78  // void stopHook();
79 
84  // void cleanupHook();
85  };
86 }
87 
88 #endif
89 
Definition: CameraViewerTask.hpp:14
Definition: CameraTask.hpp:15
Definition: CameraViewerTask.hpp:7