Example #1
0
        /// <summary>
        /// 重み付けファイルパスノードの評価
        /// </summary>
        /// <param name="node">重み付けファイルパスノード</param>
        /// <returns>ファイルパス構造体</returns>
        public override object Visit(WeightPathNode node)
        {
            FilePath filePath = new FilePath
            {
                Value  = node.Path,
                Weight = node.Weight
            };

            return(filePath);
        }
Example #2
0
 public abstract T Visit(WeightPathNode node);