diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-12 19:04:09 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-12 19:04:09 +0300 |
| commit | ca50e0c8fc88acd06d6e1932e9412464bff95edb (patch) | |
| tree | aaafb06deca983c1e80c8c34508d23a452e4a235 /Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs | |
| parent | 8a59643571080bfff715f0b0e4bb03e2dee4961a (diff) | |
| download | Tango-ca50e0c8fc88acd06d6e1932e9412464bff95edb.tar.gz Tango-ca50e0c8fc88acd06d6e1932e9412464bff95edb.zip | |
Working on PPC modules and loading.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs new file mode 100644 index 000000000..52527fb33 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Modules/IPPCModuleLoader.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.Modules +{ + /// <summary> + /// Represents a PPC <see cref="IPPCModule"/> modules loading engine. + /// </summary> + public interface IPPCModuleLoader + { + /// <summary> + /// Occurs when the user has logged in and user modules are loaded. + /// </summary> + event EventHandler ModulesLoaded; + + /// <summary> + /// Gets all loaded modules. + /// </summary> + ObservableCollection<IPPCModule> AllModules { get; } + + /// <summary> + /// Gets all the user permitted modules. + /// </summary> + ObservableCollection<IPPCModule> UserModules { get; } + + /// <summary> + /// Gets the PPC module of type T if loaded. + /// </summary> + /// <typeparam name="T"></typeparam> + /// <returns></returns> + T GetPPCModule<T>() where T : IPPCModule; + + /// <summary> + /// Loads all available PPC modules. + /// </summary> + void LoadModules(); + } +} |
