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