Tanoda
FailedDeviceList.cs
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) Ultraleap, Inc. 2011-2020. *
3 * *
4 * Use subject to the terms of the Apache License 2.0 available at *
5 * http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
6 * between Ultraleap and you, your company or other organization. *
7 ******************************************************************************/
8
9namespace Leap {
10 using System.Collections.Generic;
11
21 public class FailedDeviceList : List<FailedDevice> {
22
26 public FailedDeviceList() { }
27
32 AddRange(other);
33 return this;
34 }
35
39 public bool IsEmpty {
40 get { return Count == 0; }
41 }
42 }
43}
The list of FailedDevice objects contains an entry for every failed Leap Motion hardware device conne...
FailedDeviceList()
Constructs an empty list.
bool IsEmpty
Reports whether the list is empty.
FailedDeviceList Append(FailedDeviceList other)
Appends the contents of another FailedDeviceList to this one.