diff options
Diffstat (limited to 'tp-account-widgets')
-rw-r--r-- | tp-account-widgets/Makefile.am | 2 | ||||
-rw-r--r-- | tp-account-widgets/tpaw-builder.c | 22 | ||||
-rw-r--r-- | tp-account-widgets/tpaw-builder.h | 31 |
3 files changed, 55 insertions, 0 deletions
diff --git a/tp-account-widgets/Makefile.am b/tp-account-widgets/Makefile.am index 3ff553153..5f2f0d30f 100644 --- a/tp-account-widgets/Makefile.am +++ b/tp-account-widgets/Makefile.am @@ -21,6 +21,7 @@ libtp_account_widgets_sources = \ tpaw-account-widget-irc.c \ tpaw-account-widget-private.h \ tpaw-account-widget-sip.c \ + tpaw-builder.c \ tpaw-connection-managers.c \ tpaw-keyring.c \ tpaw-irc-network-chooser.c \ @@ -39,6 +40,7 @@ libtp_account_widgets_headers = \ tpaw-account-widget.h \ tpaw-account-widget-irc.h \ tpaw-account-widget-sip.h \ + tpaw-builder.h \ tpaw-connection-managers.h \ tpaw-keyring.h \ tpaw-irc-network-chooser-dialog.h \ diff --git a/tp-account-widgets/tpaw-builder.c b/tp-account-widgets/tpaw-builder.c new file mode 100644 index 000000000..8b7587adc --- /dev/null +++ b/tp-account-widgets/tpaw-builder.c @@ -0,0 +1,22 @@ +/* + * Copyright (C) 2013 Collabora Ltd. + * + * Authors: Marco Barisione <marco.barisione@collabora.co.uk> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "config.h" +#include "tpaw-builder.h" diff --git a/tp-account-widgets/tpaw-builder.h b/tp-account-widgets/tpaw-builder.h new file mode 100644 index 000000000..66a9d4483 --- /dev/null +++ b/tp-account-widgets/tpaw-builder.h @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2013 Collabora Ltd. + * + * Authors: Marco Barisione <marco.barisione@collabora.co.uk> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __TPAW_BUILDER_H__ +#define __TPAW_BUILDER_H__ + +#include <glib.h> +#include <gtk/gtk.h> + +G_BEGIN_DECLS + +G_END_DECLS + +#endif /* __TPAW_BUILDER_H__ */ |