Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ZeroParameters.cs
1using System;
2using SkiaSharp;
3using System.Xml;
4using System.Threading.Tasks;
5
7{
11 public abstract class ZeroParameters : CanvasOperation
12 {
17 {
18 }
19
21 public override bool Equals(object obj)
22 {
23 return (obj is ZeroParameters);
24 }
25
27 public override int GetHashCode()
28 {
29 return 0;
30 }
31
33 public override void ExportGraph(XmlWriter Output)
34 {
35 }
36
38 public override Task ImportGraph(XmlElement Xml, Variables _)
39 {
40 return Task.CompletedTask;
41 }
42 }
43}
Abstract base class for canvas operations.
Abstract base class for operations lacking parameters.
override void ExportGraph(XmlWriter Output)
Exports graph specifics to XML.
ZeroParameters()
Abstract base class for operations lacking parameters.
override Task ImportGraph(XmlElement Xml, Variables _)
Imports graph specifics from XML.
Collection of variables.
Definition: Variables.cs:25