We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9129fb2 commit 81a432aCopy full SHA for 81a432a
MemPlus/Classes/LOG/LogExporter.cs
@@ -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
32
+ /// Enumaration containing all the different export types
33
34
+ internal enum ExportType
35
36
+ Html,
37
+ Text,
38
+ Csv,
39
+ Excel
40
41
+}
0 commit comments