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