comparison OrthancFramework/Sources/DicomParsing/DicomModification.h @ 4737:979ae3ea3381

DANGEROUS commit: Anonymization is now also applied to nested sequences
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 06 Jul 2021 08:12:26 +0200
parents 45bce660ce3a
children 51ec061516c9
comparison
equal deleted inserted replaced
4736:bf852fd773b7 4737:979ae3ea3381
37 * (2) Remove tags specified by the user 37 * (2) Remove tags specified by the user
38 * (3) Replace tags 38 * (3) Replace tags
39 **/ 39 **/
40 40
41 public: 41 public:
42 enum TagOperation
43 {
44 TagOperation_Keep,
45 TagOperation_Remove
46 };
47
48 class IDicomIdentifierGenerator : public boost::noncopyable 42 class IDicomIdentifierGenerator : public boost::noncopyable
49 { 43 {
50 public: 44 public:
51 virtual ~IDicomIdentifierGenerator() 45 virtual ~IDicomIdentifierGenerator()
52 { 46 {