2008-06-22 17:10:51 +02:00
|
|
|
#include "config.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include "gnativevolumemonitor.h"
|
|
|
|
|
2007-11-28 13:39:07 +01:00
|
|
|
#include "gioalias.h"
|
2007-11-26 17:13:05 +01: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 11:54:04 +02:00
|
|
|
G_OBJECT_CLASS (g_native_volume_monitor_parent_class)->finalize (object);
|
2007-11-26 17:13:05 +01: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 17:01:59 +01:00
|
|
|
|
|
|
|
#define __G_NATIVE_VOLUME_MONITOR_C__
|
|
|
|
#include "gioaliasdef.c"
|