Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-05-22 18:54:21 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:17:45 +0300
commit93219f070fc01b82584a121e0a0d2beb97d01c3d (patch)
tree19b78d4b2e2e97c9218f002cdce4476394fcb024 /platform/location.hpp
parentc88a87db75799c150e9414f5bc0d58684881c636 (diff)
Removed boost:: namespace and fixed boost includes
Diffstat (limited to 'platform/location.hpp')
-rw-r--r--platform/location.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/platform/location.hpp b/platform/location.hpp
index 3409bf6a7c..76008bf526 100644
--- a/platform/location.hpp
+++ b/platform/location.hpp
@@ -2,8 +2,7 @@
#include "../std/string.hpp"
#include "../std/vector.hpp"
-
-#include <boost/function.hpp>
+#include "../std/function.hpp"
namespace location
{
@@ -53,8 +52,8 @@ namespace location
int m_z;
};
- typedef boost::function<void (GpsInfo const &)> TGpsCallback;
- typedef boost::function<void (CompassInfo const &)> TCompassCallback;
+ typedef function<void (GpsInfo const &)> TGpsCallback;
+ typedef function<void (CompassInfo const &)> TCompassCallback;
class LocationService
{