Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DocumentationImporter.cs « Updater « Mono.Documentation « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 516f3708aab56eefd3b4db2189159be647391a2b (plain)
1
2
3
4
5
6
7
8
namespace Mono.Documentation.Updater
{
    public abstract class DocumentationImporter
    {

        public abstract void ImportDocumentation (DocsNodeInfo info);
    }
}