GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IXmlObj.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Xml;
6 using System.Reflection;
7 
8 namespace PlugInsInterfaces.DataTypes
9 {
10  [Obfuscation(Feature = "renaming", Exclude = true)]
11  public interface IXmlObj
12  {
13  [Obfuscation(Feature = "renaming", Exclude = true)]
14  XmlNode ToXmlNode(XmlDocument xmlDoc);
15 
16  [Obfuscation(Feature = "renaming", Exclude = true)]
17  void FromXmlNode(IData data, XmlNode node);
18  }
19 }
Contains the database necessary to perform calculations
Definition: IData.cs:20