diff options
| author | Josh Blum <josh@joshknows.com> | 2013-07-15 15:20:56 -0700 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2013-07-15 15:20:56 -0700 | 
| commit | a7153fecdb1416df03f21467c52dbb35cb675f6f (patch) | |
| tree | 04473eaaa56aef63597d0daf937d451ebcc28fb6 /host/lib/types | |
| parent | ead07058f1d6f24ed390081df83044099b171a85 (diff) | |
| download | uhd-a7153fecdb1416df03f21467c52dbb35cb675f6f.tar.gz uhd-a7153fecdb1416df03f21467c52dbb35cb675f6f.tar.bz2 uhd-a7153fecdb1416df03f21467c52dbb35cb675f6f.zip  | |
uhd: added virtual destructors for several interface classes
Diffstat (limited to 'host/lib/types')
| -rw-r--r-- | host/lib/types/serial.cpp | 17 | 
1 files changed, 16 insertions, 1 deletions
diff --git a/host/lib/types/serial.cpp b/host/lib/types/serial.cpp index 9e9d32954..562261bb7 100644 --- a/host/lib/types/serial.cpp +++ b/host/lib/types/serial.cpp @@ -1,5 +1,5 @@  // -// Copyright 2011 Ettus Research LLC +// Copyright 2011-2013 Ettus Research LLC  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by @@ -21,6 +21,21 @@  using namespace uhd; +i2c_iface::~i2c_iface(void) +{ +    //empty +} + +spi_iface::~spi_iface(void) +{ +    //empty +} + +uart_iface::~uart_iface(void) +{ +    //empty +} +  spi_config_t::spi_config_t(edge_t edge):      mosi_edge(edge),      miso_edge(edge)  | 
