/*
 * Java-Gnome Bindings Library
 *
 * Copyright 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.gnu.gconf;

/*
 * This interface makes values calculated by configure available to
 * libgconf-java.
 */
public interface Config
{
	/**
	* Version of GConf that these bindings wrap.
	*/
	String GCONF_API_VERSION = "@apiversion@";
	
	/**
	* Name of the library
	*/
	String LIBRARY_NAME = "gconfjni-";
}

