comparison OrthancStone/Sources/Oracle/IOracleCommand.h @ 1831:a03260db8835

Added SetCallerName to IOracleCommand to ease debugging and logging
author Benjamin Golinvaux <bgo@osimis.io>
date Thu, 03 Jun 2021 09:14:07 +0200
parents 9ac2a65d4172
children 3889ae96d2e9
comparison
equal deleted inserted replaced
1830:fa38043b14b0 1831:a03260db8835
45 { 45 {
46 } 46 }
47 47
48 virtual Type GetType() const = 0; 48 virtual Type GetType() const = 0;
49 49
50 virtual std::string GetCallerName() const = 0;
51
50 // This only clones the command, *not* its possibly associated payload 52 // This only clones the command, *not* its possibly associated payload
51 virtual IOracleCommand* Clone() const = 0; 53 virtual IOracleCommand* Clone() const = 0;
52 }; 54 };
53 } 55 }