Line data Source code
1 : // Copyright 2024 Accenture. 2 : 3 : /** 4 : * \ingroup async 5 : */ 6 : #pragma once 7 : 8 : #include "async/QueueNode.h" 9 : 10 : namespace async 11 : { 12 29 : class IRunnable : public QueueNode<IRunnable> 13 : { 14 : public: 15 : virtual void execute() = 0; 16 : 17 : protected: 18 : IRunnable& operator=(IRunnable const&) = default; 19 : }; 20 : 21 : } // namespace async