~xavi-garcia-mena/ubuntu/vivid/upower/percentages-power-off

« back to all changes in this revision

Viewing changes to libupower-glib/upower.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2010-02-16 10:16:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100216101624-2cmwqsr1ndftdd87
Tags: upstream-0.9.0+git20100216.72bb2
ImportĀ upstreamĀ versionĀ 0.9.0+git20100216.72bb2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2008-2010 Richard Hughes <richard@hughsie.com>
 
4
 *
 
5
 * Licensed under the GNU General Public License Version 2
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 */
 
21
 
 
22
/**
 
23
 * SECTION:upower
 
24
 * @short_description: Client objects for accessing UPower
 
25
 *
 
26
 * These objects allow client programs to trivially get details about the power
 
27
 * state, and about devices on the system.
 
28
 *
 
29
 * See also: #UpClient, #UpDevice
 
30
 */
 
31
 
 
32
#ifndef __UPOWER_H__
 
33
#define __UPOWER_H__
 
34
 
 
35
#define __UPOWER_H_INSIDE__
 
36
 
 
37
#include <libupower-glib/up-version.h>
 
38
#include <libupower-glib/up-types.h>
 
39
#include <libupower-glib/up-client.h>
 
40
#include <libupower-glib/up-device.h>
 
41
#include <libupower-glib/up-qos-item.h>
 
42
#include <libupower-glib/up-history-item.h>
 
43
#include <libupower-glib/up-stats-item.h>
 
44
#include <libupower-glib/up-wakeup-item.h>
 
45
#include <libupower-glib/up-wakeups.h>
 
46
 
 
47
#undef __UPOWER_H_INSIDE__
 
48
 
 
49
#endif /* __UPOWER_H__ */
 
50