1 /*=========================================================================
2 
3   Program: GDCM (Grassroots DICOM). A DICOM library
4 
5   Copyright (c) 2006-2011 Mathieu Malaterre
6   All rights reserved.
7   See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8 
9      This software is distributed WITHOUT ANY WARRANTY; without even
10      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11      PURPOSE.  See the above copyright notice for more information.
12 
13 =========================================================================*/
14 #include "gdcmEvent.h"
15 
16 namespace gdcm
17 {
18 
19 Event::Event()
20 = default;
21 
22 Event::Event(const Event&)
23 = default;
24 
25 Event::~Event()
26 = default;
27 
Print(std::ostream & os) const28 void Event::Print(std::ostream& os) const
29 {
30   os << GetEventName();
31 }
32 
33 } // end namespace gdcm
34