SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
tiffmessagehandler.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#pragma once
5#include "slideio/imagetools/slideio_imagetools_def.hpp"
6
7namespace slideio {
8
9 class SLIDEIO_IMAGETOOLS_EXPORTS TIFFMessageHandler
10 {
11 public:
12 TIFFMessageHandler();
13 ~TIFFMessageHandler();
14 private:
15 void* m_oldWarningHandler;
16 void* m_oldErrorHandler;
17 };
18}
Definition: exceptions.hpp:15