OSDN Git Service

e1102d60fd57400dbdad4efefe6ac70748f72b7e
[strokestylet/CsWin10Desktop3.git] / StrokeStyleT / / RootNode.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Diagnostics;
4 using System.Linq;
5
6 namespace SST.曲
7 {
8         /// <summary>
9         /// 曲ツリーで「ルート」を表すノード。
10         /// </summary>
11         /// <remarks>
12         /// 曲ツリーで「ルート」を表すノード。
13         /// ルートノードは曲ツリーの最初の階層のためのプレイスホルダであり、その親ノードは null である。
14         /// 逆に、最初の階層の全ノードの親ノードは、すべてこのルートノードを示す。
15         /// </remarks>
16         public class RootNode : Node
17         {
18                 public RootNode()
19                 {
20                         this.タイトル = null;
21                         this.親ノード = null;
22                 }
23         }
24 }