mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
remove public virtual from PacketSender and RecievedPacketProcessor
This commit is contained in:
parent
6e9e21051d
commit
39f7111b2d
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/// Generalized threaded processor for queueing and sending of outbound packets.
|
/// Generalized threaded processor for queueing and sending of outbound packets.
|
||||||
class PacketSender : public virtual GenericThread {
|
class PacketSender : public GenericThread {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
static const uint64_t USECS_PER_SECOND;
|
static const uint64_t USECS_PER_SECOND;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
#include "NetworkPacket.h"
|
#include "NetworkPacket.h"
|
||||||
|
|
||||||
/// Generalized threaded processor for handling received inbound packets.
|
/// Generalized threaded processor for handling received inbound packets.
|
||||||
class ReceivedPacketProcessor : public virtual GenericThread {
|
class ReceivedPacketProcessor : public GenericThread {
|
||||||
public:
|
public:
|
||||||
ReceivedPacketProcessor();
|
ReceivedPacketProcessor();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue