using System;
using System.Collections.Generic;
using System.Text;
namespace IReaper.Initializer{
public class InitilizeDownloadEngineTask:AbstractInitTask
{
protected override void JobContent()
{
this.InitManager.SetMessage(Properties.StringResources.InitDownloadEngine);
IReaper.Running.DownloadEngine.Init();
}
}
}
|