Class StatementReader<TStatement>
Base class for all statement readers.
Inheritance
System.Object
StatementReader<TStatement>
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice.Readers
Assembly: SpiceSharpParser.dll
Syntax
public abstract class StatementReader<TStatement> : IStatementReader where TStatement : Statement
Type Parameters
Name | Description |
---|---|
TStatement | A type of statement. |
Methods
| Improve this Doc View SourceRead(TStatement, ICircuitContext)
Reads a statement (typed) and modifies the context.
Declaration
public abstract void Read(TStatement statement, ICircuitContext context)
Parameters
Type | Name | Description |
---|---|---|
TStatement | statement | A statement to process. |
ICircuitContext | context | A context to modify. |
Read(Statement, ICircuitContext)
Reads a statement and modifies the context.
Declaration
public void Read(Statement statement, ICircuitContext context)
Parameters
Type | Name | Description |
---|---|---|
Statement | statement | A statement to process. |
ICircuitContext | context | A context to modify. |