blob: 72986edd2d28eb8cf6061533af0c3bd1a1507939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* libosinfo:
*
* Copyright (C) 2009-2010 Red Hat, Inc
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors:
* Arjun Roy <arroy@redhat.com>
* Daniel P. Berrange <berrange@redhat.com>
*/
#ifndef __OSINFO_H__
#define __OSINFO_H__
#include <osinfo/osinfo_entity.h>
#include <osinfo/osinfo_filter.h>
#include <osinfo/osinfo_list.h>
#include <osinfo/osinfo_device.h>
#include <osinfo/osinfo_devicelink.h>
#include <osinfo/osinfo_devicelist.h>
#include <osinfo/osinfo_devicelinklist.h>
#include <osinfo/osinfo_devicelinkfilter.h>
#include <osinfo/osinfo_productlist.h>
#include <osinfo/osinfo_product.h>
#include <osinfo/osinfo_productfilter.h>
#include <osinfo/osinfo_platformlist.h>
#include <osinfo/osinfo_platform.h>
#include <osinfo/osinfo_oslist.h>
#include <osinfo/osinfo_os.h>
#include <osinfo/osinfo_deploymentlist.h>
#include <osinfo/osinfo_deployment.h>
#include <osinfo/osinfo_media.h>
#include <osinfo/osinfo_db.h>
#include <osinfo/osinfo_loader.h>
#endif
/*
* Local variables:
* indent-tabs-mode: nil
* c-indent-level: 4
* c-basic-offset: 4
* End:
*/
|