1 using System;
 2 using System.Windows;
 3 
 4 namespace FileExplorer
 5 {
 6     public class FileNode : Node
 7     {
 8         public nothrow FileNode(const string& name_) : base(name_)
 9         {
10         }
11         public override nothrow string ImageName() const
12         {
13             return "file.bitmap";
14         }
15         public override nothrow bool CanOpen() const
16         {
17             return false;
18         }
19     }
20 }