Esempio n. 1
0
 public WhisperPointList(WhisperCore.Format.Interfaces.IWhisperArchiveInfo archiveInfo, Stream whisperFile)
 {
     this.Count       = (int)archiveInfo.Points;
     this.enumerator  = new WhisperPointEnumerator(whisperFile, archiveInfo);
     this.archiveInfo = archiveInfo;
     this.whisperFile = whisperFile;
 }
Esempio n. 2
0
 public WhisperPointEnumerator(Stream whisperFile, WhisperCore.Format.Interfaces.IWhisperArchiveInfo archiveInfo)
 {
     this.whisperFile = whisperFile;
     this.archiveInfo = archiveInfo;
 }