File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,17 +32,17 @@ namespace pcpp
32
32
WinPcapLiveDevice& operator =(const WinPcapLiveDevice& other);
33
33
34
34
public:
35
- virtual LiveDeviceType getDeviceType () const
35
+ LiveDeviceType getDeviceType () const override
36
36
{
37
37
return WinPcapDevice;
38
38
}
39
39
40
40
bool startCapture (OnPacketArrivesCallback onPacketArrives, void * onPacketArrivesUserCookie,
41
41
int intervalInSecondsToUpdateStats, OnStatsUpdateCallback onStatsUpdate,
42
- void * onStatsUpdateUserCookie);
42
+ void * onStatsUpdateUserCookie) override ;
43
43
bool startCapture (int intervalInSecondsToUpdateStats, OnStatsUpdateCallback onStatsUpdate,
44
- void * onStatsUpdateUserCookie);
45
- bool startCapture (RawPacketVector& capturedPacketsVector)
44
+ void * onStatsUpdateUserCookie) override ;
45
+ bool startCapture (RawPacketVector& capturedPacketsVector) override
46
46
{
47
47
return PcapLiveDevice::startCapture (capturedPacketsVector);
48
48
}
You can’t perform that action at this time.
0 commit comments