You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
namespace Unplugged.Segy
|
|
{
|
|
public interface IFileHeader
|
|
{
|
|
string Text { get; }
|
|
FormatCode SampleFormat { get; }
|
|
bool IsLittleEndian { get; }
|
|
int SampleNumber { get; set; }
|
|
int SampleInteral { get; set; }
|
|
int GetValue(int position, int len);
|
|
}
|
|
}
|