| 39 | namespace client { |
| 40 | class DisplayConfigFactory; |
| 41 | class DisplayInput { |
| 42 | public: |
| 43 | DisplayInput(OSVR_DisplayDimension width, OSVR_DisplayDimension height); |
| 44 | |
| 45 | OSVR_CLIENT_EXPORT OSVR_DisplayDimension getDisplayWidth() const; |
| 46 | OSVR_CLIENT_EXPORT OSVR_DisplayDimension getDisplayHeight() const; |
| 47 | |
| 48 | private: |
| 49 | /// @todo stick these in a struct? |
| 50 | uint32_t m_width; |
| 51 | uint32_t m_height; |
| 52 | friend class DisplayConfigFactory; |
| 53 | }; |
| 54 | |
| 55 | } // namespace client |
| 56 | } // namespace osvr |