diff options
author | Josh Blum <josh@joshknows.com> | 2010-01-12 17:31:25 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-01-12 17:31:25 -0800 |
commit | 24d95c3f2cea168d1d314af29839d88cc16d3c7f (patch) | |
tree | 41163be6e0f284f03dc8e08c48c030a7141826d9 /include | |
parent | 8fdffd2f77016fe95f4a78e16d2d728b650b4d05 (diff) | |
download | uhd-24d95c3f2cea168d1d314af29839d88cc16d3c7f.tar.gz uhd-24d95c3f2cea168d1d314af29839d88cc16d3c7f.tar.bz2 uhd-24d95c3f2cea168d1d314af29839d88cc16d3c7f.zip |
Added the basic rx and tx skeleton wrapper.
Made autotools mods so it passes distcheck.
Diffstat (limited to 'include')
-rw-r--r-- | include/usrp_uhd/usrp/dboard/base.hpp | 6 | ||||
-rw-r--r-- | include/usrp_uhd/usrp/dboard/interface.hpp | 6 | ||||
-rw-r--r-- | include/usrp_uhd/usrp/dboard/manager.hpp | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/include/usrp_uhd/usrp/dboard/base.hpp b/include/usrp_uhd/usrp/dboard/base.hpp index 23ae4a4fe..86ab7dde6 100644 --- a/include/usrp_uhd/usrp/dboard/base.hpp +++ b/include/usrp_uhd/usrp/dboard/base.hpp @@ -2,8 +2,8 @@ // Copyright 2010 Ettus Research LLC // -#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_BASE_H -#define INCLUDED_USRP_UHD_USRP_DBOARD_BASE_H +#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_BASE_HPP +#define INCLUDED_USRP_UHD_USRP_DBOARD_BASE_HPP #include <usrp_uhd/wax.hpp> #include <boost/utility.hpp> @@ -77,4 +77,4 @@ public: }}} //namespace -#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_BASE_H */ +#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_BASE_HPP */ diff --git a/include/usrp_uhd/usrp/dboard/interface.hpp b/include/usrp_uhd/usrp/dboard/interface.hpp index f9e4c96b4..e6fdd9ad1 100644 --- a/include/usrp_uhd/usrp/dboard/interface.hpp +++ b/include/usrp_uhd/usrp/dboard/interface.hpp @@ -2,8 +2,8 @@ // Copyright 2010 Ettus Research LLC // -#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_H -#define INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_H +#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_HPP +#define INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_HPP #include <boost/shared_ptr.hpp> #include <stdint.h> @@ -144,4 +144,4 @@ public: }}} //namespace -#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_H */ +#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_INTERFACE_HPP */ diff --git a/include/usrp_uhd/usrp/dboard/manager.hpp b/include/usrp_uhd/usrp/dboard/manager.hpp index 565411371..29aca83f0 100644 --- a/include/usrp_uhd/usrp/dboard/manager.hpp +++ b/include/usrp_uhd/usrp/dboard/manager.hpp @@ -2,8 +2,8 @@ // Copyright 2010 Ettus Research LLC // -#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_H -#define INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_H +#ifndef INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP +#define INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP #include <vector> #include <usrp_uhd/wax.hpp> @@ -44,4 +44,4 @@ private: }}} //namespace -#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_H */ +#endif /* INCLUDED_USRP_UHD_USRP_DBOARD_MANAGER_HPP */ |