~thomas-voss/location-service/enable-kml-reporting

« back to all changes in this revision

Viewing changes to src/location/glib/holder.h

  • Committer: Thomas Voß
  • Date: 2017-03-08 11:58:46 UTC
  • mfrom: (289.2.5 spike-on-gdbus)
  • Revision ID: thomas.voss@canonical.com-20170308115846-bx6e266x3e5mk6v6
Merge lp:~thomas-voss/location-service/rework-dbus-bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2017 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef LOCATION_GLIB_HOLDER_H_
 
20
#define LOCATION_GLIB_HOLDER_H_
 
21
 
 
22
#include <boost/core/ignore_unused.hpp>
 
23
 
 
24
#include <glib.h>
 
25
 
 
26
namespace location
 
27
{
 
28
namespace glib
 
29
{
 
30
 
 
31
template<typename T>
 
32
struct Holder
 
33
{
 
34
    static void destroy_notify(gpointer data)
 
35
    {
 
36
        delete static_cast<Holder<T>*>(data);
 
37
    }
 
38
 
 
39
    static void closure_notify(gpointer data, GClosure* closure)
 
40
    {
 
41
        boost::ignore_unused(closure);
 
42
        delete static_cast<Holder<T>*>(data);
 
43
    }
 
44
 
 
45
    T value;
 
46
};
 
47
 
 
48
}  // namespace glib
 
49
}  // namespace location
 
50
 
 
51
#endif  // LOCATION_GLIB_HOLDER_H_