chuni-hands/CameraHelper/CameraHelper.h

17 lines
273 B
C
Raw Normal View History

2020-02-28 08:49:44 +08:00
#pragma once
using namespace System;
namespace CameraHelper {
public ref class CameraInfo {
public:
property int Id;
property String^ Name;
};
public ref class CameraHelper {
public:
static System::Collections::Generic::List<CameraInfo^>^ GetCameras();
};
}