Thermal Camera SDK 10.0.1
SDK for Optris Thermal Cameras
Loading...
Searching...
No Matches
DeviceType.h
Go to the documentation of this file.
1// Copyright (c) 2025 Optris GmbH Co. KG
2
10
11#pragma once
12
13#include <string>
14#include <ostream>
15
16#include "otcsdk/Api.h"
17
18
19namespace optris
20{
21
23enum class DeviceType
24{
25 Unknown,
26 PI1,
27 PI160,
28 PI2x0,
29 PI160orPI2x0,
30 PI4x0,
31 PI4x0I,
32 PI640,
33 PI640I,
34 PI1M,
35 Xi80,
36 Xi160,
37 Xi400,
38 Xi410,
39 Xi410MT,
40 Xi440,
41 Xi640,
42 Xi1M,
43};
44
45
46// Utility functions
54OTC_SDK_API bool is1MDevice(DeviceType type) noexcept;
55
63OTC_SDK_API std::string toString(DeviceType deviceType) noexcept;
64
73OTC_SDK_API std::ostream& operator<<(std::ostream& out, DeviceType deviceType) noexcept;
74
75} // namespace optris
Contains defines controlling the Windows DLL export and import of symbols.
#define OTC_SDK_API
Only needed when working with Windows DLLs.
Definition Api.h:65
Main SDK namespace.
Definition DeviceInfo.h:23
OTC_SDK_API bool is1MDevice(DeviceType type) noexcept
Returns whether the given device is of the 1M variety.
OTC_SDK_API std::string toString(DeviceType deviceType) noexcept
Returns a string representation of the given device type.
DeviceType
Represents the different types of Optris thermal cameras.
Definition DeviceType.h:24
OTC_SDK_API std::ostream & operator<<(std::ostream &out, DeviceType deviceType) noexcept
Output stream operator for device types.