// Generated by gmmproc 2.54.1 -- DO NOT MODIFY! #include #include #include /* Copyright (C) 2008 Jonathon Jongsma * * 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 namespace Gio { } // namespace Gio namespace { } // anonymous namespace namespace Glib { Glib::RefPtr wrap(GInetSocketAddress* object, bool take_copy) { return Glib::RefPtr( dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } } /* namespace Glib */ namespace Gio { /* The *_Class implementation: */ const Glib::Class& InetSocketAddress_Class::init() { if(!gtype_) // create the GType if necessary { // Glib::Class has to know the class init function to clone custom types. class_init_func_ = &InetSocketAddress_Class::class_init_function; // This is actually just optimized away, apparently with no harm. // Make sure that the parent type has been created. //CppClassParent::CppObjectType::get_type(); // Create the wrapper type, with the same class/instance size as the base type. register_derived_type(g_inet_socket_address_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void InetSocketAddress_Class::class_init_function(void* g_class, void* class_data) { const auto klass = static_cast(g_class); CppClassParent::class_init_function(klass, class_data); } Glib::ObjectBase* InetSocketAddress_Class::wrap_new(GObject* object) { return new InetSocketAddress((GInetSocketAddress*)object); } /* The implementation: */ GInetSocketAddress* InetSocketAddress::gobj_copy() { reference(); return gobj(); } InetSocketAddress::InetSocketAddress(const Glib::ConstructParams& construct_params) : SocketAddress(construct_params) { } InetSocketAddress::InetSocketAddress(GInetSocketAddress* castitem) : SocketAddress((GSocketAddress*)(castitem)) {} InetSocketAddress::InetSocketAddress(InetSocketAddress&& src) noexcept : SocketAddress(std::move(src)) {} InetSocketAddress& InetSocketAddress::operator=(InetSocketAddress&& src) noexcept { SocketAddress::operator=(std::move(src)); return *this; } InetSocketAddress::~InetSocketAddress() noexcept {} InetSocketAddress::CppClassType InetSocketAddress::inetsocketaddress_class_; // initialize static member GType InetSocketAddress::get_type() { return inetsocketaddress_class_.init().get_type(); } GType InetSocketAddress::get_base_type() { return g_inet_socket_address_get_type(); } InetSocketAddress::InetSocketAddress(const Glib::RefPtr& address, guint16 port) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(nullptr), SocketAddress(Glib::ConstructParams(inetsocketaddress_class_.init(), "address", const_cast(Glib::unwrap(address)), "port", port, nullptr)) { } Glib::RefPtr InetSocketAddress::create(const Glib::RefPtr& address, guint16 port) { return Glib::RefPtr( new InetSocketAddress(address, port) ); } Glib::RefPtr InetSocketAddress::get_address() { Glib::RefPtr retvalue = Glib::wrap(g_inet_socket_address_get_address(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr InetSocketAddress::get_address() const { return const_cast(this)->get_address(); } guint16 InetSocketAddress::get_port() const { return g_inet_socket_address_get_port(const_cast(gobj())); } guint32 InetSocketAddress::get_flowinfo() const { return g_inet_socket_address_get_flowinfo(const_cast(gobj())); } guint32 InetSocketAddress::get_scope_id() const { return g_inet_socket_address_get_scope_id(const_cast(gobj())); } Glib::PropertyProxy_ReadOnly< Glib::RefPtr > InetSocketAddress::property_address() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "address"); } Glib::PropertyProxy_ReadOnly< guint16 > InetSocketAddress::property_port() const { return Glib::PropertyProxy_ReadOnly< guint16 >(this, "port"); } Glib::PropertyProxy_ReadOnly< guint32 > InetSocketAddress::property_flowinfo() const { return Glib::PropertyProxy_ReadOnly< guint32 >(this, "flowinfo"); } Glib::PropertyProxy_ReadOnly< guint32 > InetSocketAddress::property_scope_id() const { return Glib::PropertyProxy_ReadOnly< guint32 >(this, "scope-id"); } } // namespace Gio