IResamplingConfig.cs 982 B

1234567891011121314151617181920212223242526
  1. /////////////////////////////////////////////////////////////////////////////////
  2. // Paint.NET //
  3. // Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. //
  4. // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. //
  5. // See src/Resources/Files/License.txt for full licensing and attribution //
  6. // details. //
  7. // . //
  8. /////////////////////////////////////////////////////////////////////////////////
  9. using System;
  10. namespace PaintDotNet.Measurement.Interface
  11. {
  12. internal interface IResamplingConfig
  13. {
  14. event EventHandler ResamplingAlgorithmChanged;
  15. ResamplingAlgorithm ResamplingAlgorithm
  16. {
  17. get;
  18. set;
  19. }
  20. void PerformResamplingAlgorithmChanged();
  21. }
  22. }