summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h
index 1b3a69de58a..56d69d42f8c 100644
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h
+++ b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Current_Impl.h
@@ -44,10 +44,10 @@ namespace TAO
{
public:
/// Constructor.
- Current_Impl (void);
+ Current_Impl ();
/// Destructor
- ~Current_Impl (void);
+ ~Current_Impl ();
/// Implementation of the SSLIOP-specific
/// SecurityLevel3::client_credentials() method.
@@ -70,19 +70,15 @@ namespace TAO
void ssl (SSL *s);
/// Return pointer to the SSL session state for the current upcall.
- SSL *ssl (void);
+ SSL *ssl ();
protected:
/// Return the unique tag that identifies the concrete subclass.
- virtual CORBA::ULong tag (void) const;
+ virtual CORBA::ULong tag () const;
private:
- /// Prevent copying through the copy constructor and the assignment
- /// operator.
- //@{
- Current_Impl (const Current_Impl &);
- void operator= (const Current_Impl &);
- //@}
+ Current_Impl (const Current_Impl &) = delete;
+ void operator= (const Current_Impl &) = delete;
private:
/// The SSL session state corresponding to the current upcall.