40 lines
1001 B
C#
40 lines
1001 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Xml.Serialization;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.ResultsWriters.Basic
|
|
{
|
|
public class WriterCfg : ComponentCfgBase, Generic.IComponentCfg
|
|
{
|
|
public IComponent GetComponent(IList<IComponent> components) { return new Writer(this); }
|
|
public IComponentCfgCtrl GetControl() { return new WriterCfgCtrl(); }
|
|
|
|
|
|
public string DestinationPath; /// Directory path into which the results will be saved
|
|
public bool DayFolders;
|
|
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
WriterCfg()
|
|
{
|
|
Name = "BasicResultsWriter";
|
|
ParentName = string.Empty;
|
|
|
|
DestinationPath = Program.HomeDir + "Results\\";
|
|
}
|
|
|
|
public WriterCfg(IComponentFactory factory)
|
|
: this()
|
|
{
|
|
this.Factory = factory;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0}", Name);
|
|
}
|
|
}
|
|
}
|