Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IGraph.cs
1using System;
2using System.IO;
3
5{
9 public interface IGraph
10 {
14 string Header
15 {
16 get;
17 }
18
23 void ExportGraph(StreamWriter Output);
24
32 bool ExportGraphScript(StreamWriter Output, string CustomColor, bool Span);
33 }
34}
Interface for graph nodes
Definition: IGraph.cs:10
string Header
Optional header
Definition: IGraph.cs:15
bool ExportGraphScript(StreamWriter Output, string CustomColor, bool Span)
Exports the graph to a markdown output.
void ExportGraph(StreamWriter Output)
Exports the graph to a markdown output.