Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

34 lines
731 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Helpers.h"
#include <vector>
namespace AJA
{
namespace Private
{
/* DeviceScanner definition
*****************************************************************************/
class DeviceScanner
{
public:
DeviceScanner();
~DeviceScanner();
DeviceScanner(const DeviceScanner&) = delete;
DeviceScanner& operator=(const DeviceScanner&) = delete;
int32_t GetNumDevices() const;
bool GetDeviceTextId(int32_t InDeviceIndex, AJADeviceScanner::FormatedTextType& OutTextId) const;
bool GetDeviceInfo(int32_t InDeviceIndex, AJADeviceScanner::DeviceInfo& OutDeviceInfo) const;
private:
CNTV2DeviceScanner* Scanner;
};
}
}