#ifndef __STRONGSWAN_CONNECTIONS_H__
#define __STRONGSWAN_CONNECTIONS_H__
+#include <gtk/gtk.h>
+
#include "strongswan-connection.h"
G_BEGIN_DECLS
StrongswanConnections *strongswan_connections_new (void);
+GtkTreeModel *strongswan_connections_get_model (StrongswanConnections *connections);
+void strongswan_connections_setup_column_renderers (StrongswanConnections *connections, GtkCellLayout *layout);
+
StrongswanConnection *strongswan_connections_get_connection (StrongswanConnections *self, const gchar *name);
void strongswan_connections_save_connection (StrongswanConnections *self, StrongswanConnection *conn);
void strongswan_connections_remove_connection (StrongswanConnections *self, const gchar *name);
+#ifdef USE_DYNAMIC_TYPES
+void strongswan_connections_register (GTypeModule *type_module);
+#endif
+
G_END_DECLS
#endif /* __STRONGSWAN_CONNECTIONS_H__ */