comparison Framework/Oracle/SleepOracleCommand.h @ 1128:8e3763d1736a broker

removing CustomOracleCommand
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 05 Nov 2019 22:39:25 +0100
parents 15d493101c1e
children a0a33e5ea5bb
comparison
equal deleted inserted replaced
1127:3308ef083297 1128:8e3763d1736a
20 20
21 21
22 #pragma once 22 #pragma once
23 23
24 #include "../Messages/IMessage.h" 24 #include "../Messages/IMessage.h"
25 #include "OracleCommandWithPayload.h" 25 #include "OracleCommandBase.h"
26 26
27 namespace OrthancStone 27 namespace OrthancStone
28 { 28 {
29 class SleepOracleCommand : public OracleCommandWithPayload 29 class SleepOracleCommand : public OracleCommandBase
30 { 30 {
31 private: 31 private:
32 unsigned int milliseconds_; 32 unsigned int milliseconds_;
33 33
34 public: 34 public: