#ifndef _GIOMM_TLSCLIENTCONNECTIONIMPL_H #define _GIOMM_TLSCLIENTCONNECTIONIMPL_H /* Copyright (C) 2020 The giomm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . */ #include #include #include namespace Gio { /** %Gio::TlsClientConnectionImpl is a Gio::TlsConnection that implements * the Gio::TlsClientConnection interface. * * The GTlsClientConnection interface can be implemented by C classes that * derive from GTlsConnection. No public GLib class implements GTlsClientConnection. * Some GLib functions, such as g_tls_client_connection_new(), return an object * of a class which is derived from GTlsConnection and implements GTlsClientConnection. * Since that C class is not public, it's not wrapped in a C++ class. * A C object of such a class can be wrapped in a %Gio::TlsClientConnectionImpl object. * %Gio::TlsClientConnectionImpl does not directly correspond to any GLib class. * * This class is intended only for wrapping C objects returned from GLib functions. * * @newin{2,66} */ class GIOMM_API TlsClientConnectionImpl : public TlsClientConnection, public TlsConnection { private: // noncopyable TlsClientConnectionImpl(const TlsClientConnectionImpl&) = delete; TlsClientConnectionImpl& operator=(const TlsClientConnectionImpl&) = delete; friend class TlsConnection_Class; protected: explicit TlsClientConnectionImpl(GTlsConnection* castitem); public: TlsClientConnectionImpl(TlsClientConnectionImpl&& src) noexcept; TlsClientConnectionImpl& operator=(TlsClientConnectionImpl&& src) noexcept; ~TlsClientConnectionImpl() noexcept override; }; } // namespace Gio #endif /* _GIOMM_TLSCLIENTCONNECTIONIMPL_H */