-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6957093
commit 9b8583f
Showing
12 changed files
with
76 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
src/bcf-toolkit/Builder/Bcf21/Interfaces/IBcfBuilderDelegate.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
src/bcf-toolkit/Builder/Bcf30/Interfaces/IBcfBuilderDelegate.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
using BcfToolkit.Model; | ||
using BcfToolkit.Model.Bcf21; | ||
using BcfToolkit.Model.Interfaces; | ||
|
||
namespace BcfToolkit.Builder.Interfaces; | ||
|
||
public interface IBcfBuilderDelegate { | ||
public delegate void OnMarkupCreated<in TMarkup>(TMarkup markup) | ||
where TMarkup : IMarkup; | ||
|
||
public delegate void | ||
OnProjectCreated<in TProject>(ProjectExtension projectInfo) | ||
where TProject : IProject; | ||
|
||
|
||
public delegate void OnProjectCreated<in TProjectInfo>( | ||
TProjectInfo projectInfo) | ||
where TProjectInfo : IProject; | ||
|
||
public delegate void OnExtensionsCreated<in TExtensions>( | ||
TExtensions extensions) | ||
where TExtensions : IExtensions; | ||
|
||
public delegate void OnDocumentCreated<in TDocumentInfo>( | ||
TDocumentInfo documentInfo) | ||
where TDocumentInfo : IDocumentInfo; | ||
|
||
public OnMarkupCreated<IMarkup> MarkupCreated { get; } | ||
|
||
public OnExtensionsCreated<IExtensions> ExtensionsCreated { get; } | ||
public OnProjectCreated<IProject> ProjectCreated { get; } | ||
public OnDocumentCreated<IDocumentInfo> DocumentCreatedCreated { get; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters