using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KinectConnection { /// /// The infrared image stream. /// public class InfraredImageStream : KinectStream { public override void Start() { throw new NotImplementedException(); } public override void Stop() { throw new NotImplementedException(); } } }