MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
mitkNavigationDataSetWriterXML.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef mitkNavigationDataSetWriterXML_h
14#define mitkNavigationDataSetWriterXML_h
15
16#include <MitkIGTIOExports.h>
17
19#include <mitkAbstractFileWriter.h>
20
21namespace mitk {
22 class MITKIGTIO_EXPORT NavigationDataSetWriterXML : public AbstractFileWriter
23 {
24 public:
25
28
29
30 using AbstractFileWriter::Write;
31 void Write() override;
32
33 protected:
34
36
37 mitk::NavigationDataSetWriterXML* Clone() const override;
38
39 virtual void StreamHeader (std::ostream* stream, mitk::NavigationDataSet::ConstPointer data);
40 virtual void StreamData (std::ostream* stream, mitk::NavigationDataSet::ConstPointer data);
41 virtual void StreamFooter (std::ostream* stream);
42 };
43}
44
45#endif
IGT Exceptions.