File tree Expand file tree Collapse file tree 1 file changed +0
-27
lines changed Expand file tree Collapse file tree 1 file changed +0
-27
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Collections . Generic ;
3
2
using Microsoft . Vbe . Interop ;
4
3
using Rubberduck . Parsing . VBA ;
5
4
6
5
namespace Rubberduck . Parsing
7
6
{
8
- public class ParseStartedEventArgs : EventArgs
9
- {
10
- public ParseStartedEventArgs ( IEnumerable < string > projectNames )
11
- {
12
- _projectNames = projectNames ;
13
- }
14
-
15
- private readonly IEnumerable < string > _projectNames ;
16
- public IEnumerable < string > ProjectNames { get { return _projectNames ; } }
17
- }
18
-
19
- public class ResolutionProgressEventArgs : EventArgs
20
- {
21
- private readonly VBComponent _component ;
22
- private readonly decimal _percentProgress ;
23
-
24
- public ResolutionProgressEventArgs ( VBComponent component , decimal percentProgress )
25
- {
26
- _component = component ;
27
- _percentProgress = percentProgress ;
28
- }
29
-
30
- public VBComponent Component { get { return _component ; } }
31
- public decimal PercentProgress { get { return _percentProgress ; } }
32
- }
33
-
34
7
public class ParseProgressEventArgs : EventArgs
35
8
{
36
9
private readonly VBComponent _component ;
You can’t perform that action at this time.
0 commit comments