Пример #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;
 }
Пример #2
0
 public WhisperArchive(IWhisperArchiveInfo archiveInfo, Stream whisperFile)
 {
     this.points      = new WhisperPointList(archiveInfo, whisperFile);
     this.ArchiveInfo = archiveInfo;
 }