SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
converter.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_converter_HPP
5#define OPENCV_slideio_converter_HPP
6
7#include "convertercallback.hpp"
8#include "slideio/converter/converter_def.hpp"
9#include "slideio/slideio/scene.hpp"
10
11const std::string DRIVER = "DRIVER";
12
13#if defined(_MSC_VER)
14#pragma warning( push )
15#pragma warning(disable: 4251)
16#endif
17
18namespace slideio
19{
20 namespace converter
21 {
22 class ConverterParameters;
23 void SLIDEIO_CONVERTER_EXPORTS convertScene(std::shared_ptr<Scene> inputScene,
24 ConverterParameters& parameters,
25 const std::string& outputPath,
26 ConverterCallback cb = nullptr);
27 }
28}
29
30#if defined(_MSC_VER)
31#pragma warning( pop )
32#endif
33
34#endif
Definition: exceptions.hpp:15