Sha256: 73224def396d2fe092fd00c5e73d54bea44c8daab27bc5bce69c6d599ec13a78

Contents?: true

Size: 1.27 KB

Versions: 167

Compression:

Stored size: 1.27 KB

Contents

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2012  Ruby-GNOME2 Project 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, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA
 */

#include "rb-gi-private.h"

#define RG_TARGET_NAMESPACE rb_cGITypeTag
#define SELF(self) (RVAL2GI_TYPE_TAG(self))

static VALUE
rg_to_s(VALUE self)
{
    GITypeTag tag;

    tag = SELF(self);
    return CSTR2RVAL(g_type_tag_to_string(tag));
}

void
rb_gi_type_tag_init(VALUE rb_mGI)
{
    VALUE RG_TARGET_NAMESPACE;

    RG_TARGET_NAMESPACE = G_DEF_CLASS(G_TYPE_I_TYPE_TAG, "TypeTag", rb_mGI);

    RG_DEF_METHOD(to_s, 0);
}

Version data entries

167 entries across 167 versions & 1 rubygems

Version Path
gobject-introspection-4.2.7 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.6 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.5 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.4 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.3 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.2 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.1 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.2.0 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.9 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.8 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.7 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.6 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.5 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.4 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.3 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.2 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.1 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.1.0 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.0.9 ext/gobject-introspection/rb-gi-type-tag.c
gobject-introspection-4.0.8 ext/gobject-introspection/rb-gi-type-tag.c