Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Graphs.cs
1using System;
2
4{
9 {
16 : base(Parent, Model)
17 {
18 }
19
23 public override string LocalName => nameof(Graphs);
24
32 {
33 return new Graphs(Parent, Model);
34 }
35
36 }
37}
Root node of a simulation model
Definition: Model.cs:49
override ISimulationNode Create(ISimulationNode Parent, Model Model)
Creates a new instance of the node.
Definition: Graphs.cs:31
Graphs(ISimulationNode Parent, Model Model)
Container for graphs.
Definition: Graphs.cs:15
override string LocalName
Local name of XML element defining contents of class.
Definition: Graphs.cs:23
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...