summaryrefslogtreecommitdiff
path: root/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h')
-rw-r--r--TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h23
1 files changed, 9 insertions, 14 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h b/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h
index dcacb31119d..e7d61ee0b18 100644
--- a/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h
+++ b/TAO/tests/CSD_Strategy_Tests/TP_Common/OrbTask.h
@@ -1,5 +1,3 @@
-// This may look like C, but it's really -*- C++ -*-
-
//=============================================================================
/**
* @file OrbTask.h
@@ -17,20 +15,17 @@
class CSD_TP_Test_Export OrbTask : public ACE_Task_Base
{
- public:
-
- OrbTask(CORBA::ORB_ptr orb, unsigned num_threads = 1);
- virtual ~OrbTask();
-
- virtual int open(void* x = 0);
- virtual int svc();
- virtual int close(u_long);
-
+public:
+ OrbTask(CORBA::ORB_ptr orb, unsigned num_threads = 1);
+ ~OrbTask() override = default;
- private:
+ int open(void* x = 0) override;
+ int svc() override;
+ int close(u_long) override;
- CORBA::ORB_var orb_;
- unsigned num_threads_;
+private:
+ CORBA::ORB_var orb_;
+ unsigned num_threads_;
};
#endif