using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using System.Collections.ObjectModel; namespace BuzzGUI.Interfaces { public interface IWaveLayer : IWaveformBase { string Path { get; } /// /// Should only be used by Work functions of managed machines. The actual format depends on IWaveformBase.Format and IWaveformBase.ChannelCount. Note that the pointer may change between Work calls. /// IntPtr RawSamples { get; } } }