Add autoconf checks for platforms without IPv6
[mono.git] / mcs / class / monodoc / Monodoc / Node_Legacy.cs
1 using System;
2 using System.IO;
3 using System.Text;
4 using System.Linq;
5 using System.Xml;
6 using System.Collections.Generic;
7
8 #if LEGACY_MODE
9
10 namespace Monodoc
11 {
12         public partial class Node
13         {
14                 [Obsolete ("Use `Tree' instead of 'tree'")]
15                 public Tree tree {
16                         get {
17                                 return this.Tree;
18                         }
19                 }
20
21                 [Obsolete ("Use TreeDumper")]
22                 public static void PrintTree (Tree t)
23                 {
24                         TreeDumper.PrintTree (t.RootNode);
25                 }
26
27                 
28         }
29 }
30
31 #endif