~thomas-voss/location-service/add-snapcraft-setup-next

« back to all changes in this revision

Viewing changes to src/location/events/all.h

Merge lp:~thomas-voss/location-service/simplify-provider-interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2016 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
#ifndef LOCATION_EVENTS_ALL_H_
 
19
#define LOCATION_EVENTS_ALL_H_
 
20
 
 
21
#include <location/events/reference_position_updated.h>
 
22
#include <location/events/wifi_and_cell_id_reporting_state_changed.h>
 
23
 
 
24
#include <boost/variant.hpp>
 
25
 
 
26
namespace location
 
27
{
 
28
namespace events
 
29
{
 
30
/// @brief Undefined tags the unknown event and allows us to
 
31
/// escape the "no default ctor" issue.
 
32
struct Undefined{};
 
33
 
 
34
/// @brief All captures all known events and allows us to serialize/transport
 
35
/// them easily without the need to extend location::Event with specific serialization
 
36
/// functionality.
 
37
typedef boost::variant
 
38
<
 
39
    Undefined,
 
40
    ReferencePositionUpdated,
 
41
    WifiAndCellIdReportingStateChanged
 
42
> All;
 
43
}
 
44
}
 
45
 
 
46
#endif // LOCATION_EVENTS_ALL_H_