mirror of
https://github.com/XFox111/GZipCompression.git
synced 2026-04-22 06:16:18 +03:00
Finished and polished project (added files)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GZipTest
|
||||
{
|
||||
interface IProcessingModule
|
||||
{
|
||||
void Run(string input, string output);
|
||||
void Stop();
|
||||
event ProgressChangedEventHandler ProgressChanged;
|
||||
event EventHandler Complete;
|
||||
event ErrorEventHandler ErrorOccured;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user