X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fmcs%2Fdoc-bootstrap.cs;h=ae60ff4031b669964a8da0ac3ac3d503cec9bf55;hb=213499eb63a7473fe76321318229651880fbea49;hp=26e64b9c5b3347e35c6530929a4d020409e830be;hpb=d49951ccf584ba637afb1dab7fff714478e3174d;p=mono.git diff --git a/mcs/mcs/doc-bootstrap.cs b/mcs/mcs/doc-bootstrap.cs index 26e64b9c5b3..ae60ff4031b 100644 --- a/mcs/mcs/doc-bootstrap.cs +++ b/mcs/mcs/doc-bootstrap.cs @@ -4,33 +4,34 @@ // 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. +// Copyright 2011 Xamarin Inc // // -#if BOOTSTRAP_WITH_OLDLIB +#if BOOTSTRAP_WITH_OLDLIB || MOBILE 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, XmlElement el) + internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r) { } @@ -45,7 +46,7 @@ namespace Mono.CSharp { { } - public bool OutputDocComment (string asmfilename) + public bool OutputDocComment (string asmfilename, Report r) { return true; }