Wasatch.VCPP 1.0.19
Visual C++ driver for Wasatch Photonics spectrometers
Uint40.h
1#pragma once
2
3#include <stdint.h>
4
5namespace WasatchVCPP
6{
7 class Uint40
8 {
9 public:
10 Uint40(long long val);
11
12 uint16_t LSW;
13 uint16_t MidW;
14 uint8_t MSB;
15 };
16}
Definition: Uint40.h:8
Namespace encapsulating the internal implementation of WasatchVCPP; customers would not normally acce...
Definition: Driver.h:26