2008-06-22 15:10:51 +00:00
|
|
|
#include "config.h"
|
2007-11-26 16:13:05 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include "gnativevolumemonitor.h"
|
|
|
|
|
2007-11-28 12:39:07 +00:00
|
|
|
#include "gioalias.h"
|
2007-11-26 16:13:05 +00:00
|
|
|
|
|
|
|
G_DEFINE_ABSTRACT_TYPE (GNativeVolumeMonitor, g_native_volume_monitor, G_TYPE_VOLUME_MONITOR);
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_native_volume_monitor_finalize (GObject *object)
|
|
|
|
{
|
2008-06-16 09:54:04 +00:00
|
|
|
G_OBJECT_CLASS (g_native_volume_monitor_parent_class)->finalize (object);
|
2007-11-26 16:13:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_native_volume_monitor_class_init (GNativeVolumeMonitorClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = g_native_volume_monitor_finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_native_volume_monitor_init (GNativeVolumeMonitor *native_monitor)
|
|
|
|
{
|
|
|
|
}
|
2007-11-28 16:01:59 +00:00
|
|
|
|
|
|
|
#define __G_NATIVE_VOLUME_MONITOR_C__
|
|
|
|
#include "gioaliasdef.c"
|