SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
ndpitiffmessagehandler.hpp
1// This file is part of slideio project.
2// It is subject to the license terms in the LICENSE file found in the top-level directory
3// of this distribution and at http://slideio.com/license.html.
4#ifndef OPENCV_slideio_ndpimessagehandler_HPP
5#define OPENCV_slideio_ndpimessagehandler_HPP
6#include <tiffio.h>
7
8namespace slideio {
9
10 class NDPITIFFMessageHandler
11 {
12 public:
13 NDPITIFFMessageHandler();
14 ~NDPITIFFMessageHandler();
15 private:
16 void* m_oldWarningHandler;
17 void* m_oldErrorHandler;
18 };
19}
20
21#endif
Definition: exceptions.hpp:12