naps2/NAPS2.Core/ILogger.cs
Ben Olden-Cooligan 21329e3716 Save PDF now has options to save all or selected. Same todo for images and email (email is broken until that's implemented).
Restructured menu options (rotate is one menu). Added Reorder menu option with Interleave and Deinterleave actions.
Fixed some logging.
2014-10-15 12:56:42 -04:00

14 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace NAPS2
{
public interface ILogger
{
void Error(string message);
void ErrorException(string message, Exception exception);
void FatalException(string message, Exception exception);
}
}