UHD  003.002.002
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
gps_ctrl.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010-2011 Ettus Research LLC
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
16 //
17 
18 #ifndef INCLUDED_GPS_CTRL_HPP
19 #define INCLUDED_GPS_CTRL_HPP
20 
21 #include <boost/shared_ptr.hpp>
22 #include <boost/utility.hpp>
23 #include <boost/function.hpp>
24 #include <boost/date_time/posix_time/posix_time_types.hpp>
25 #include <vector>
26 #include <uhd/types/sensors.hpp>
27 
28 using namespace boost::posix_time;
29 
30 typedef boost::function<void(std::string)> gps_send_fn_t;
31 typedef boost::function<std::string(void)> gps_recv_fn_t;
32 
33 class gps_ctrl : boost::noncopyable{
34 public:
35  typedef boost::shared_ptr<gps_ctrl> sptr;
36 
40  static sptr make(gps_send_fn_t, gps_recv_fn_t);
41 
45  virtual std::vector<std::string> get_sensors(void) = 0;
46 
50  virtual uhd::sensor_value_t get_sensor(std::string key) = 0;
51 
56  virtual bool gps_detected(void) = 0;
57 
58  //TODO: other fun things you can do with a GPS.
59 
60 };
61 
62 #endif /* INCLUDED_GPS_CTRL_HPP */
boost::shared_ptr< gps_ctrl > sptr
Definition: gps_ctrl.hpp:35
Definition: sensors.hpp:38
Definition: gps_ctrl.hpp:33
boost::function< std::string(void)> gps_recv_fn_t
Definition: gps_ctrl.hpp:31
boost::function< void(std::string)> gps_send_fn_t
Definition: gps_ctrl.hpp:30