| 8 | using std::string; |
| 9 | |
| 10 | Signal::Signal(DWORD pid, DWORD_PTR type) |
| 11 | { |
| 12 | Signal::validateType(type); |
| 13 | this->type = type; |
| 14 | Signal::checkPidExist(pid); |
| 15 | this->pid = pid; |
| 16 | } |
| 17 | |
| 18 | DWORD_PTR Signal::getType() { |
| 19 | return this->type; |
nothing calls this directly
no outgoing calls
no test coverage detected