Implemented network device class
[mtetherd] / net.h
diff --git a/net.h b/net.h
index 0bb9d2d..844bb92 100644 (file)
--- a/net.h
+++ b/net.h
@@ -22,6 +22,7 @@
 #define _MTETHERD_NET_H
 
 #include <glib.h>
+#include <glib-object.h>
 
 G_BEGIN_DECLS
 
@@ -47,6 +48,9 @@ struct _MTetherDDevice {
 
 GType mtetherd_device_get_type();
 
+MTetherDDevice *mtetherd_device_new(const gchar *interface, const gchar *udi, guint index);
+MTetherDDevice *mtetherd_device_find(GList *list, const gchar *udi);
+
 G_END_DECLS
 
 #endif //_MTETHERD_NET_H