UHD  003.001.002
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 
26 using namespace boost::posix_time;
27 
28 typedef boost::function<void(std::string)> gps_send_fn_t;
29 typedef boost::function<std::string(void)> gps_recv_fn_t;
30 
31 class gps_ctrl : boost::noncopyable{
32 public:
33  typedef boost::shared_ptr<gps_ctrl> sptr;
34 
38  static sptr make(gps_send_fn_t, gps_recv_fn_t);
39 
44  virtual ptime get_time(void) = 0;
45 
50  virtual time_t get_epoch_time(void) = 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:33
Definition: gps_ctrl.hpp:31
boost::function< std::string(void)> gps_recv_fn_t
Definition: gps_ctrl.hpp:29
boost::function< void(std::string)> gps_send_fn_t
Definition: gps_ctrl.hpp:28