Cell.cs 554 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace DvdLib.Ifo
  7. {
  8. public class Cell
  9. {
  10. public CellPlaybackInfo PlaybackInfo { get; private set; }
  11. public CellPositionInfo PositionInfo { get; private set; }
  12. internal void ParsePlayback(BinaryReader br)
  13. {
  14. PlaybackInfo = new CellPlaybackInfo(br);
  15. }
  16. internal void ParsePosition(BinaryReader br)
  17. {
  18. PositionInfo = new CellPositionInfo(br);
  19. }
  20. }
  21. }