SlideIO 2.9.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
svsdriverids.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
6namespace slideio
7{
8 // The public driver ids of the two formats the svs driver library serves.
9 // They live here rather than in svsimagedriver.hpp so that the slide and scene
10 // classes, which need only to name an id, do not have to include the driver class
11 // to get it -- data depending on the driver points the dependency the wrong way.
12 constexpr const char* SVS_DRIVER_ID = "SVS";
13 constexpr const char* PHTIFF_DRIVER_ID = "PHTIFF";
14}
Definition: exceptions.hpp:15