/*
 * Java-Gnome Bindings Library
 *
 * Copyright 1998-2005 the Java-Gnome Team, all rights reserved.
 *
 * The Java-Gnome bindings library is free software distributed under
 * the terms of the GNU Library General Public License version 2.
 */

package org.freedesktop.cairo;

import org.gnu.glib.Struct;
import org.gnu.glib.Handle;

/**
 */
class CairoObject extends Struct {

    CairoObject(Handle hndl) {
        super(hndl);
    }

    // static init code
    static {
        System.loadLibrary("cairojni-"
                + org.freedesktop.cairo.Config.CAIRO_API_VERSION);
    }

}
