1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  *
3  * Copyright (C) 2015 Dominika Hodovska <dhodovsk@redhat.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20 
21 #ifndef __UDISKS_LINUX_MANAGER_BCACHE_H__
22 #define __UDISKS_LINUX_MANAGER_BCACHE_H__
23 
24 #include <src/udisksdaemontypes.h>
25 #include "udisksbcachetypes.h"
26 
27 G_BEGIN_DECLS
28 
29 #define UDISKS_TYPE_LINUX_MANAGER_BCACHE            (udisks_linux_manager_bcache_get_type ())
30 #define UDISKS_LINUX_MANAGER_BCACHE(o)              (G_TYPE_CHECK_INSTANCE_CAST  ((o), UDISKS_TYPE_LINUX_MANAGER_BCACHE, UDisksLinuxManagerBcache))
31 #define UDISKS_IS_LINUX_MANAGER_BCACHE(o)           (G_TYPE_CHECK_INSTANCE_TYPE  ((o), UDISKS_TYPE_LINUX_MANAGER_BCACHE))
32 #define UDISKS_LINUX_MANAGER_BCACHE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), UDISKS_TYPE_LINUX_MANAGER_BCACHE, UDisksLinuxManagerBcacheClass))
33 #define UDISKS_IS_LINUX_MANAGER_BCACHE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UDISKS_TYPE_LINUX_MANAGER_BCACHE))
34 #define UDISKS_LINUX_MANAGER_BCACHE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), UDISKS_TYPE_LINUX_MANAGER_BCACHE, UDisksLinuxManagerBcacheClass))
35 
36 typedef struct _UDisksLinuxManagerBcache        UDisksLinuxManagerBcache;
37 typedef struct _UDisksLinuxManagerBcacheClass   UDisksLinuxManagerBcacheClass;
38 
39 GType                      udisks_linux_manager_bcache_get_type    (void) G_GNUC_CONST;
40 UDisksLinuxManagerBcache  *udisks_linux_manager_bcache_new         (UDisksLinuxModuleBcache  *module);
41 UDisksLinuxModuleBcache   *udisks_linux_manager_bcache_get_module  (UDisksLinuxManagerBcache *manager);
42 
43 G_END_DECLS
44 
45 #endif /* __UDISKS_LINUX_MANAGER_BCACHE_H__ */
46