The base class for all Generators.
Namespace:
LeCouteauSuisse.APIAssembly: LeCouteauSuisseAPI (in LeCouteauSuisseAPI.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
C# |
---|
public abstract class BaseGenerator : IGenerator, IDisposable |
Visual Basic (Declaration) |
---|
Public MustInherit Class BaseGenerator _ Implements IGenerator, IDisposable |
Visual C++ |
---|
public ref class BaseGenerator abstract : IGenerator, IDisposable |
Remarks
This class implements interfaces, initialization, and code for a Generator. It provide to store the GeneratorContext, and provide some property and method to check if your generator must stop.
When you derive from this class to implement your generator, you must implement at least the Run()()() method in your derived class.