Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/VDAFile.cs')
-rw-r--r--UVtools.Core/FileFormats/VDAFile.cs11
1 files changed, 2 insertions, 9 deletions
diff --git a/UVtools.Core/FileFormats/VDAFile.cs b/UVtools.Core/FileFormats/VDAFile.cs
index ab6ab3a..126c325 100644
--- a/UVtools.Core/FileFormats/VDAFile.cs
+++ b/UVtools.Core/FileFormats/VDAFile.cs
@@ -8,24 +8,16 @@
using System;
using System.Collections.Generic;
-using System.Drawing;
using System.IO;
using System.IO.Compression;
using System.Linq;
-using System.Text;
using System.Xml.Serialization;
-using Emgu.CV;
-using Emgu.CV.CvEnum;
-using Emgu.CV.Util;
-using Org.BouncyCastle.Crypto;
-using Org.BouncyCastle.Crypto.Engines;
-using Org.BouncyCastle.OpenSsl;
using UVtools.Core.Extensions;
-using UVtools.Core.GCode;
using UVtools.Core.Operations;
namespace UVtools.Core.FileFormats
{
+ #region Sub Classes
[Serializable]
[XmlRoot(ElementName = "root")]
public class VDARoot
@@ -146,6 +138,7 @@ namespace UVtools.Core.FileFormats
public VDAMachines Machines { get; set; } = new();
public List<VDALayer> Layers { get; set; } = new();
}
+ #endregion
public class VDAFile : FileFormat
{