IGraphicsProvider.cs 260 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Drawing;
  6. #pragma warning disable
  7. namespace Svg
  8. {
  9. public interface IGraphicsProvider
  10. {
  11. Graphics GetGraphics();
  12. }
  13. }
  14. #pragma warning restore