main
Last change
on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago |
Pred finalna verzija
|
-
Property mode
set to
100644
|
File size:
360 bytes
|
Line | |
---|
1 | #ifndef WINDOWS_H
|
---|
2 | #define WINDOWS_H
|
---|
3 |
|
---|
4 | #include <winsock2.h>
|
---|
5 | #include <windows.h>
|
---|
6 | #include "../shared/BruteForceBackend.hh"
|
---|
7 |
|
---|
8 | class WindowsBackend : public BruteForceBackend {
|
---|
9 | public:
|
---|
10 | void start() override;
|
---|
11 | ~WindowsBackend();
|
---|
12 | void subscribe(WatcherRef watcher) override;
|
---|
13 | void unsubscribe(WatcherRef watcher) override;
|
---|
14 | private:
|
---|
15 | bool mRunning;
|
---|
16 | };
|
---|
17 |
|
---|
18 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.