Skip to content

Commit f38eb9d

Browse files
committed
Missing file
1 parent 293d502 commit f38eb9d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System.Collections.Generic;
2+
3+
namespace FlashDebugger.Helpers
4+
{
5+
6+
/// <summary>
7+
/// A simple static factory to get IDataTreeExporter implementations
8+
/// </summary>
9+
public static class DataTreeExporterFactory
10+
{
11+
12+
private readonly static IDictionary<string, IDataTreeExporter> exporters;
13+
public static IDictionary<string, IDataTreeExporter> Exporters
14+
{
15+
get { return exporters; }
16+
}
17+
18+
static DataTreeExporterFactory()
19+
{
20+
exporters = new Dictionary<string, IDataTreeExporter>();
21+
exporters[""] = new DefaultDataTreeExporter();
22+
}
23+
24+
}
25+
}

0 commit comments

Comments
 (0)