SlideIO 2.0.0
Open-source library for reading of medical images
Loading...
Searching...
No Matches
dimensions.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
5namespace slideio
6{
7 namespace vsi
8 {
9 enum class Dimensions
10 {
11 X = 0,
12 Y = 1,
13 Z = 2,
14 C = 3,
15 T = 4,
16 L = 5,
17 P = 6
18 };
19
20 const int MAX_DIMENSIONS = 7;
21
22 class IDimensionOrder
23 {
24 public:
25 virtual int getDimensionOrder(vsi::Dimensions dim) const = 0;
26 };
27 }
28
29}
Definition: exceptions.hpp:12