Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Events.cs
1using System;
2using System.IO;
3using System.Threading.Tasks;
4
6{
11 {
18 : base(Parent, Model)
19 {
20 }
21
25 public override string LocalName => nameof(Events);
26
34 {
35 return new Events(Parent, Model);
36 }
37
42 public override Task ExportMarkdown(StreamWriter Output)
43 {
44 return Task.CompletedTask;
45 }
46 }
47}
Root node of a simulation model
Definition: Model.cs:49
Events(ISimulationNode Parent, Model Model)
Container for events.
Definition: Events.cs:17
override string LocalName
Local name of XML element defining contents of class.
Definition: Events.cs:25
override ISimulationNode Create(ISimulationNode Parent, Model Model)
Creates a new instance of the node.
Definition: Events.cs:33
override Task ExportMarkdown(StreamWriter Output)
Exports Markdown
Definition: Events.cs:42
Abstract base class for simulation nodes with children
ISimulationNode Parent
Parent node in the simulation model.
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...