diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-09 19:02:11 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-09 19:02:11 -0800 |
commit | 5f2c71383a2b5dd0f2f469f6ad8c4720358f2a12 (patch) | |
tree | 3f8db7989bd21ca1d516a562c0db813a7908244e /host/lib/usrp/usrp_e100/clock_ctrl.hpp | |
parent | d33a6cab6646692e06ef34317f6c831ac9c91148 (diff) | |
download | uhd-5f2c71383a2b5dd0f2f469f6ad8c4720358f2a12.tar.gz uhd-5f2c71383a2b5dd0f2f469f6ad8c4720358f2a12.tar.bz2 uhd-5f2c71383a2b5dd0f2f469f6ad8c4720358f2a12.zip |
usrp-e100: renamed files and classes in usrp-e100 to e100 name
Diffstat (limited to 'host/lib/usrp/usrp_e100/clock_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/usrp_e100/clock_ctrl.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/host/lib/usrp/usrp_e100/clock_ctrl.hpp b/host/lib/usrp/usrp_e100/clock_ctrl.hpp index 3b5103ed1..0ae68728e 100644 --- a/host/lib/usrp/usrp_e100/clock_ctrl.hpp +++ b/host/lib/usrp/usrp_e100/clock_ctrl.hpp @@ -15,10 +15,10 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#ifndef INCLUDED_USRP_E_CLOCK_CTRL_HPP -#define INCLUDED_USRP_E_CLOCK_CTRL_HPP +#ifndef INCLUDED_USRP_E100_CLOCK_CTRL_HPP +#define INCLUDED_USRP_E100_CLOCK_CTRL_HPP -#include "usrp_e_iface.hpp" +#include "usrp_e100_iface.hpp" #include <boost/shared_ptr.hpp> #include <boost/utility.hpp> #include <vector> @@ -28,16 +28,16 @@ * - Setup system clocks. * - Disable/enable clock lines. */ -class usrp_e_clock_ctrl : boost::noncopyable{ +class usrp_e100_clock_ctrl : boost::noncopyable{ public: - typedef boost::shared_ptr<usrp_e_clock_ctrl> sptr; + typedef boost::shared_ptr<usrp_e100_clock_ctrl> sptr; /*! * Make a new clock control object. - * \param iface the usrp_e iface object + * \param iface the usrp_e100 iface object * \return the clock control object */ - static sptr make(usrp_e_iface::sptr iface); + static sptr make(usrp_e100_iface::sptr iface); /*! * Get the rate of the fpga clock line. @@ -85,4 +85,4 @@ public: }; -#endif /* INCLUDED_USRP_E_CLOCK_CTRL_HPP */ +#endif /* INCLUDED_USRP_E100_CLOCK_CTRL_HPP */ |