Info per file implemented (more testing required)

This commit is contained in:
2015-07-16 00:37:11 +02:00
parent a06104a7cc
commit 92c5165035
6 changed files with 244 additions and 89 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace CobXmlSupport
{
public class GenSetting
public class GenSetting:ICloneable
{
public event SaveHandler evSave;
public EventArgs e = null;
@ -88,5 +88,13 @@ namespace CobXmlSupport
S.ettingUserCodeBcup = this.UserCodeBcup;
S.ettingBackupOwnCode = this.BcupOwnCode;
}
public object Clone()
{
GenSetting tmpGenSetting = new GenSetting();
tmpGenSetting = (GenSetting)this.MemberwiseClone();
return tmpGenSetting;
}
}
}