summaryrefslogtreecommitdiff
path: root/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-09-12 08:32:34 +0200
committerGitHub <noreply@github.com>2022-09-12 08:32:34 +0200
commitfe03724176dcfd20e0f9a6e493198469242be6b6 (patch)
tree2245c24a6c4ef9c7d4010d1b61827850592777a3 /ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
parent41a1f3bc12f780cc087c936ab53d1074f363b630 (diff)
parent00b403be7df0442405bd5e3dcc07beaa6730ddd2 (diff)
downloadATCD-fe03724176dcfd20e0f9a6e493198469242be6b6.tar.gz
Merge pull request #1922 from knutpett/knutpett/whitespace
Remove whitespace
Diffstat (limited to 'ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h')
-rw-r--r--ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h b/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
index 727393c5514..691149db411 100644
--- a/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
+++ b/ACE/examples/Bounded_Packet_Relay/Thread_Bounded_Packet_Relay.h
@@ -65,7 +65,6 @@ class Thread_Bounded_Packet_Relay_Driver;
class Text_Input_Device_Wrapper : public Input_Device_Wrapper_Base
{
public:
-
// = Enumerated logging level flags
enum Logging_Flags {NO_LOGGING = 0,
LOG_MSGS_CREATED = 1};
@@ -106,7 +105,6 @@ private:
/// This value holds a count of packets created.
u_long packet_count_;
-
};
/**
@@ -120,7 +118,6 @@ private:
class Text_Output_Device_Wrapper : public Output_Device_Wrapper_Base
{
public:
-
// = Enumerated logging level flags
enum Logging_Flags {NO_LOGGING = 0,
LOG_MSGS_RCVD = 2,
@@ -142,13 +139,11 @@ public:
virtual int modify_device_settings (void *logging);
private:
-
/// This value holds the logging level.
int logging_;
/// This value holds a count of packets received.
u_long packet_count_;
-
};
/**
@@ -163,7 +158,6 @@ private:
class User_Input_Task : public ACE_Task_Base
{
public:
-
// = Trait for command accessible entry points.
typedef int (User_Input_Task::*ACTION) (void *);
@@ -241,7 +235,6 @@ private:
class BPR_Handler_Base : public ACE_Event_Handler
{
public:
-
// = Trait for command accessible entry points.
typedef int (BPR_Handler_Base::*ACTION) (void *);
@@ -286,7 +279,6 @@ class Send_Handler;
class Send_Handler : public BPR_Handler_Base
{
public:
-
// = Trait for command accessible entry points.
typedef int (Send_Handler::*ACTION) (void *);
@@ -314,7 +306,6 @@ public:
virtual int reregister (void *timeout);
private:
-
/// Count of the number of messages to send from the
/// relay object to the output device object.
u_long send_count_;