From af0f888057b5af2377f89e9602451ed8e61a5a80 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 15 Sep 2013 14:33:57 -0400 Subject: libostree: Add new OstreeSysroot class At the moment, just a container for a path, but we will start moving admin functionality here. --- src/libostree/ostree-sysroot.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/libostree/ostree-sysroot.h (limited to 'src/libostree/ostree-sysroot.h') diff --git a/src/libostree/ostree-sysroot.h b/src/libostree/ostree-sysroot.h new file mode 100644 index 00000000..b983383b --- /dev/null +++ b/src/libostree/ostree-sysroot.h @@ -0,0 +1,42 @@ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- + * + * Copyright (C) 2013 Colin Walters + * + * 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 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., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#pragma once + +#include "ostree-repo.h" + +G_BEGIN_DECLS + +#define OSTREE_TYPE_SYSROOT ostree_sysroot_get_type() +#define OSTREE_SYSROOT(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), OSTREE_TYPE_SYSROOT, OstreeSysroot)) +#define OSTREE_IS_SYSROOT(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), OSTREE_TYPE_SYSROOT)) + +GType ostree_sysroot_get_type (void); + +OstreeSysroot* ostree_sysroot_new (GFile *path); + +OstreeSysroot* ostree_sysroot_new_default (void); + +GFile *ostree_sysroot_get_path (OstreeSysroot *self); + +G_END_DECLS + -- cgit v1.2.1