/* vim: set noexpandtab tabstop=4 shiftwidth=4 nowrap textwidth=100
*
* Echo Media Player
* Copyright (C) 2008 Shane O'Connell
*
* [ The original file includes a copyright header in this location describing
* the file as being released under the terms of the GNU General Public
* License. It has been removed in order to display the file as part of the
* archive. ]
*/
public class Echo.UI.Preferences.LibrariesTab : Gtk.VBox, IPreferencesTab
{
public string name { get { return "Libraries"; } }
public string icon { get { return "blah"; } }
public LibrariesTab()
{
this.add(new Gtk.Label("test"));
}
}