File tree Expand file tree Collapse file tree 9 files changed +16
-15
lines changed Expand file tree Collapse file tree 9 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . IO ;
4+ using MemPlus . Business . LOG ;
45
5- namespace MemPlus . Business . LOG
6+ namespace MemPlus . Business . EXPORT
67{
78 /// <summary>
89 /// Static class containing the logic for exporting logs
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . IO ;
4+ using MemPlus . Business . PROCESS ;
45
5- namespace MemPlus . Business . PROCESS
6+ namespace MemPlus . Business . EXPORT
67{
78 /// <summary>
89 /// Static class that can be used to export ProcessDetail information
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
33using System . IO ;
4+ using MemPlus . Business . RAM ;
45
5- namespace MemPlus . Business . RAM
6+ namespace MemPlus . Business . EXPORT
67{
78 /// <summary>
89 /// Static class that can be used to export RamStick information
Original file line number Diff line number Diff line change @@ -41,19 +41,19 @@ public class LogController
4141 /// <summary>
4242 /// Method that will be called when a Log object was added
4343 /// </summary>
44- internal LogAdded LogAddedEvent ;
44+ internal event LogAdded LogAddedEvent ;
4545 /// <summary>
4646 /// Method that will be called when a Log object was removed
4747 /// </summary>
48- internal LogDeleted LogDeletedEvent ;
48+ internal event LogDeleted LogDeletedEvent ;
4949 /// <summary>
5050 /// Method that will be called when all Log objects were removed
5151 /// </summary>
52- internal LogsCleared LogsClearedEvent ;
52+ internal event LogsCleared LogsClearedEvent ;
5353 /// <summary>
5454 /// Method that will be called when a list of Log objects with a specific LogType were removed
5555 /// </summary>
56- internal LogTypeCleared LogTypeClearedEvent ;
56+ internal event LogTypeCleared LogTypeClearedEvent ;
5757 #endregion
5858
5959 /// <summary>
Original file line number Diff line number Diff line change 44using System . Management ;
55using System . Security . Principal ;
66using System . Windows ;
7+ using MemPlus . Business . EXPORT ;
78using MemPlus . Business . LOG ;
89using MemPlus . Business . PROCESS ;
910using MemPlus . Business . RAM ;
Original file line number Diff line number Diff line change 8989 <Compile Include =" Business\EXPORT\ExportTypes.cs" />
9090 <Compile Include =" Business\LOG\ProcessLog.cs" />
9191 <Compile Include =" Business\PROCESS\ProcessDetail.cs" />
92- <Compile Include =" Business\PROCESS \ProcessDetailExporter.cs" />
92+ <Compile Include =" Business\EXPORT \ProcessDetailExporter.cs" />
9393 <Compile Include =" Business\RAM\RamData.cs" />
94- <Compile Include =" Business\RAM \RamSticksExporter.cs" />
94+ <Compile Include =" Business\EXPORT \RamSticksExporter.cs" />
9595 <Compile Include =" Business\RAM\RamStick.cs" />
9696 <Compile Include =" Business\UTILS\NativeMethods.cs" />
9797 <Compile Include =" Business\UTILS\Utils.cs" />
128128 <Compile Include =" Business\LOG\ILogMethods.cs" />
129129 <Compile Include =" Business\LOG\Log.cs" />
130130 <Compile Include =" Business\LOG\LogController.cs" />
131- <Compile Include =" Business\LOG \LogExporter.cs" />
131+ <Compile Include =" Business\EXPORT \LogExporter.cs" />
132132 <Compile Include =" Business\LOG\RamLog.cs" />
133133 <Compile Include =" Business\RAM\RamController.cs" />
134134 <Compile Include =" Business\RAM\RamOptimizer.cs" />
Original file line number Diff line number Diff line change 11using System ;
2- using System . Collections . Generic ;
32using System . ComponentModel ;
43using System . Reflection ;
54using System . Windows ;
87using MemPlus . Business . EXPORT ;
98using MemPlus . Business . GUI ;
109using MemPlus . Business . LOG ;
11- using MemPlus . Business . PROCESS ;
1210using MemPlus . Business . RAM ;
1311using MemPlus . Business . UTILS ;
1412using Microsoft . Win32 ;
Original file line number Diff line number Diff line change 1010 WindowStartupLocation =" CenterScreen"
1111 AllowsTransparency =" True"
1212 TitleTextAlignment =" Center"
13- Title =" MemPlus - Process Analyzer" Height =" 300 " Width =" 450 " Icon =" /Resources/Images/ram.png" >
13+ Title =" MemPlus - Process Analyzer" Height =" 350 " Width =" 500 " Icon =" /Resources/Images/ram.png" >
1414 <Grid >
1515 <Grid .RowDefinitions>
1616 <RowDefinition />
2424 <Image Width =" 16" Height =" 16" Source =" /MemPlus;component/Resources/Images/log.png" />
2525 </MenuItem .Icon>
2626 </MenuItem >
27- <Separator ></ Separator >
27+ <Separator / >
2828 <MenuItem Header =" Clear" Click =" BtnClear_OnClick" >
2929 <MenuItem .Icon>
3030 <Image Width =" 16" Height =" 16" Source =" /MemPlus;component/Resources/Images/exit.png" />
Original file line number Diff line number Diff line change 77using MemPlus . Business . LOG ;
88using MemPlus . Business . RAM ;
99using MemPlus . Business . UTILS ;
10- using Microsoft . Win32 ;
1110
1211namespace MemPlus . Views . Windows
1312{
You can’t perform that action at this time.
0 commit comments