Robot Raconteur Core C++ Library
PeriodicCleanupTask.h
Go to the documentation of this file.
1 
24 #pragma once
25 
26 namespace RobotRaconteur
27 {
28 
29 class IPeriodicCleanupTask
30 {
31 
32  public:
33  virtual void PeriodicCleanupTask() = 0;
34  virtual ~IPeriodicCleanupTask(){};
35 };
36 } // namespace RobotRaconteur