GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IDependable.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.Reflection;
6 
7 namespace PlugInsInterfaces.DataTypes
8 {
9  public interface IDependable
10  {
11 
12  [Obfuscation(Feature = "renaming", Exclude = true)]
13  List<int> used();
14 
15  [Obfuscation(Feature = "renaming", Exclude = true)]
16  List<int> unUsed();
17 
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  List<IDependentItem> dependentItems(IDependentItem idi);
20  }
21 }
An idependent item represents the chain of dependency between entities in GREET for instance...