Skip to content

Commit 81a432a

Browse files
committed
* Refactored images
* Added code to export logs
1 parent 9129fb2 commit 81a432a

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

MemPlus/Classes/LOG/LogExporter.cs

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
using System.Collections.Generic;
2+
3+
namespace MemPlus.Classes.LOG
4+
{
5+
/// <summary>
6+
/// Interaction logic for exporting logs
7+
/// </summary>
8+
internal static class LogExporter
9+
{
10+
internal static void ExportHtml(string path, List<Log> logList)
11+
{
12+
13+
}
14+
15+
internal static void ExportTxt(string path, List<Log> logList)
16+
{
17+
18+
}
19+
20+
internal static void ExportCsv(string path, List<Log> logList)
21+
{
22+
23+
}
24+
25+
internal static void ExportExcel(string path, List<Log> logList)
26+
{
27+
28+
}
29+
}
30+
31+
/// <summary>
32+
/// Enumaration containing all the different export types
33+
/// </summary>
34+
internal enum ExportType
35+
{
36+
Html,
37+
Text,
38+
Csv,
39+
Excel
40+
}
41+
}

0 commit comments

Comments
 (0)