diff options
author | Richard Hughes <richard@hughsie.com> | 2014-06-17 11:52:49 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2014-06-17 12:01:32 +0100 |
commit | 1284b3fa0addf21070c6d9ce697623a04862cdde (patch) | |
tree | a9ecf1b4d984e41e56179ebd6453288dd712843e /libappstream-builder/asb-task.h | |
parent | 0ec1dd10ee2281d4f6e102e4e8da8365332540b1 (diff) | |
download | appstream-glib-1284b3fa0addf21070c6d9ce697623a04862cdde.tar.gz |
Add libappstream-builder from the createrepo_as project
Diffstat (limited to 'libappstream-builder/asb-task.h')
-rw-r--r-- | libappstream-builder/asb-task.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/libappstream-builder/asb-task.h b/libappstream-builder/asb-task.h new file mode 100644 index 0000000..b813b28 --- /dev/null +++ b/libappstream-builder/asb-task.h @@ -0,0 +1,65 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2014 Richard Hughes <richard@hughsie.com> + * + * Licensed under the GNU Lesser General Public License Version 2.1 + * + * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef ASB_TASK_H +#define ASB_TASK_H + +#include <glib-object.h> + +#include "asb-package.h" +#include "asb-context.h" + +#define ASB_TYPE_TASK (asb_task_get_type()) +#define ASB_TASK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ASB_TYPE_TASK, AsbTask)) +#define ASB_TASK_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST((cls), ASB_TYPE_TASK, AsbTaskClass)) +#define ASB_IS_TASK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ASB_TYPE_TASK)) +#define ASB_IS_TASK_CLASS(cls) (G_TYPE_CHECK_CLASS_TYPE((cls), ASB_TYPE_TASK)) +#define ASB_TASK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ASB_TYPE_TASK, AsbTaskClass)) + +G_BEGIN_DECLS + +typedef struct _AsbTask AsbTask; +typedef struct _AsbTaskClass AsbTaskClass; + +struct _AsbTask +{ + GObject parent; +}; + +struct _AsbTaskClass +{ + GObjectClass parent_class; +}; + +GType asb_task_get_type (void); + + +AsbTask *asb_task_new (AsbContext *ctx); +gboolean asb_task_process (AsbTask *task, + GError **error_not_used); +void asb_task_set_package (AsbTask *task, + AsbPackage *pkg); +void asb_task_set_id (AsbTask *task, + guint id); + +G_END_DECLS + +#endif /* ASB_TASK_H */ |