SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
pkeimagedriver.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
6#include "slideio/drivers/pke/pke_api_def.hpp"
7#include "slideio/core/imagedriver.hpp"
8
9namespace slideio
10{
11 class SLIDEIO_PKE_EXPORTS PKEImageDriver : public slideio::ImageDriver
12 {
13 public:
14 PKEImageDriver();
15 ~PKEImageDriver();
16 std::string getID() const override;
17 std::shared_ptr<slideio::CVSlide> openFile(const std::string& filePath) override;
18 std::string getFileSpecs() const override;
19 };
20}
21
Definition: exceptions.hpp:12