X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fmcs%2Fdoc-bootstrap.cs;h=f81f7e86aafbce6f6ff052cc3ae5cb7785a7a278;hb=81dfccbd14f683f1fe46f570e76c1e99a14c5a81;hp=fb1092cf97059c5a82731e487af4915c50995c0b;hpb=6b6435d1b3206b0162c37e5ecce8d9a699fe6467;p=mono.git diff --git a/mcs/mcs/doc-bootstrap.cs b/mcs/mcs/doc-bootstrap.cs index fb1092cf970..f81f7e86aaf 100644 --- a/mcs/mcs/doc-bootstrap.cs +++ b/mcs/mcs/doc-bootstrap.cs @@ -4,33 +4,33 @@ // Author: // Raja R Harinath // -// Licensed under the terms of the GNU GPL +// Dual licensed under the terms of the MIT X11 or GNU GPL // -// (C) 2004 Novell, Inc. +// Copyright 2004 Novell, Inc. // // -#if BOOTSTRAP_WITH_OLDLIB +#if BOOTSTRAP_WITH_OLDLIB || NET_2_1 using XmlElement = System.Object; namespace Mono.CSharp { public class DocUtil { - internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds) + internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds, Report r) { } - internal static void GenerateDocComment (MemberCore mc, DeclSpace ds) + internal static void GenerateDocComment (MemberCore mc, DeclSpace ds, Report r) { } - public static string GetMethodDocCommentName (MethodCore mc, DeclSpace ds) + public static string GetMethodDocCommentName (MemberCore mc, ParametersCompiled p, DeclSpace ds) { return ""; } - internal static void OnMethodGenerateDocComment (MethodCore mc, DeclSpace ds, XmlElement el) + internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r) { } @@ -45,7 +45,7 @@ namespace Mono.CSharp { { } - public bool OutputDocComment (string asmfilename) + public bool OutputDocComment (string asmfilename, Report r) { return true; }