blob: 564f19efc204b297a0517d19d639a6a8bcd4cb63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// Copyright 2010 Ettus Research LLC
//
#include <usrp_uhd/usrp/mboard/test.hpp>
#include <stdexcept>
using namespace usrp_uhd::usrp::mboard;
test::test(const device_addr_t &){
//
}
test::~test(void){
//
}
void test::get(const wax::type &, wax::type &){
//
}
void test::set(const wax::type &, const wax::type &){
//
}
|