From 687910bc052e1430c8132a5eefe63e20ba6937e0 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 27 Feb 2018 19:04:50 +0200 Subject: Implemented PMR Generator for hardware objects ! --- .../Tango.CodeGeneration/ProtoMessageFile.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs new file mode 100644 index 000000000..6d771099a --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/ProtoMessageFile.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class ProtoMessageFile : Class + { + public String Package { get; set; } + public List Imports { get; set; } + + public ProtoMessageFile() + { + Imports = new List(); + } + } +} -- cgit v1.3.1