MobileVideoSource.cs 476 B

12345678910111213141516171819
  1. namespace InABox.Avalonia
  2. {
  3. public abstract class MobileVideoSource<TSource, TOptions> : MobileDocumentSource<TOptions>
  4. where TOptions : MobileVideoOptions<TSource>, new()
  5. where TSource : MobileDocumentSource
  6. {
  7. protected MobileVideoSource(TOptions options) : base(options)
  8. {
  9. }
  10. protected override void ApplyOptions(MobileDocument document)
  11. {
  12. // Nothing to do here
  13. }
  14. }
  15. }