diff options
| author | 2020-02-03 11:41:04 -0500 | |
|---|---|---|
| committer | 2020-02-03 11:41:04 -0500 | |
| commit | 2cd51fc9fd11cce6aeea44dc0158f6bfde5456ec (patch) | |
| tree | dfd9cc0b10283da66259842b584e920697d6196b /src/input_common/udp/udp.h | |
| parent | Merge pull request #3370 from ReinUsesLisp/node-shared-ptr (diff) | |
| parent | input_common/udp: Ensure that UDP is shut down within Shutdown() (diff) | |
| download | yuzu-2cd51fc9fd11cce6aeea44dc0158f6bfde5456ec.tar.gz yuzu-2cd51fc9fd11cce6aeea44dc0158f6bfde5456ec.tar.xz yuzu-2cd51fc9fd11cce6aeea44dc0158f6bfde5456ec.zip | |
Merge pull request #3374 from lioncash/udp
input_common/udp: Minor changes
Diffstat (limited to 'src/input_common/udp/udp.h')
| -rw-r--r-- | src/input_common/udp/udp.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/input_common/udp/udp.h b/src/input_common/udp/udp.h index ea3de60bb..4f83f0441 100644 --- a/src/input_common/udp/udp.h +++ b/src/input_common/udp/udp.h | |||
| @@ -2,15 +2,13 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #pragma once | ||
| 6 | |||
| 5 | #include <memory> | 7 | #include <memory> |
| 6 | #include <unordered_map> | ||
| 7 | #include "input_common/main.h" | ||
| 8 | #include "input_common/udp/client.h" | ||
| 9 | 8 | ||
| 10 | namespace InputCommon::CemuhookUDP { | 9 | namespace InputCommon::CemuhookUDP { |
| 11 | 10 | ||
| 12 | class UDPTouchDevice; | 11 | class Client; |
| 13 | class UDPMotionDevice; | ||
| 14 | 12 | ||
| 15 | class State { | 13 | class State { |
| 16 | public: | 14 | public: |