
| Current Path : /usr/include/gdcm-3.0/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/include/gdcm-3.0/gdcmAnonymizeEvent.h |
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef GDCMANONYMIZEEVENT_H
#define GDCMANONYMIZEEVENT_H
#include "gdcmEvent.h"
#include "gdcmTag.h"
namespace gdcm
{
/**
* \brief AnonymizeEvent
* \details Special type of event triggered during the Anonymization process
*
* \see Anonymizer
*/
class AnonymizeEvent : public AnyEvent
{
public:
typedef AnonymizeEvent Self;
typedef AnyEvent Superclass;
AnonymizeEvent(Tag const &tag = 0):m_Tag(tag) {}
~AnonymizeEvent() override = default;
AnonymizeEvent(const Self&s) : AnyEvent(s){};
void operator=(const Self&) = delete;
const char * GetEventName() const override { return "AnonymizeEvent"; }
bool CheckEvent(const ::gdcm::Event* e) const override
{ return (dynamic_cast<const Self*>(e) == nullptr ? false : true) ; }
::gdcm::Event* MakeObject() const override
{ return new Self; }
void SetTag(const Tag& t ) { m_Tag = t; }
Tag const & GetTag() const { return m_Tag; }
private:
Tag m_Tag;
};
} // end namespace gdcm
#endif //GDCMANONYMIZEEVENT_H