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