image_dimensions.h
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <string>
12 #include <vector>
13 
14 namespace illumina { namespace interop { namespace model { namespace run
15 {
20  {
21  public:
27  image_dimensions(size_t width = 0, size_t height = 0) : m_width(width), m_height(height)
28  {}
29 
30  public:
43  size_t width() const
44  { return m_width; }
45 
50  size_t height() const
51  { return m_height; }
53  private:
54  size_t m_width;
55  size_t m_height;
56 
57  friend class info;
58  };
59 
60 }}}}
61 
62 
Definition: enum_description.h:15
size_t width() const
Definition: image_dimensions.h:43
size_t height() const
Definition: image_dimensions.h:50
image_dimensions(size_t width=0, size_t height=0)
Definition: image_dimensions.h:27
Definition: image_dimensions.h:19