aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-11-07 16:53:47 -0800
committerJosh Blum <josh@joshknows.com>2011-11-07 16:53:47 -0800
commit902818f50bbd486138a7d4cd2ce9ba3661f4a732 (patch)
treecec3681c04d5acc3e74924e4c255f1ea81201d81 /host/lib/utils
parent9d4350d74ea926999780ded0016c5ad51874ebec (diff)
downloaduhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.tar.gz
uhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.tar.bz2
uhd-902818f50bbd486138a7d4cd2ce9ba3661f4a732.zip
uhd: removed wax and props utils
Diffstat (limited to 'host/lib/utils')
-rw-r--r--host/lib/utils/CMakeLists.txt1
-rw-r--r--host/lib/utils/props.cpp40
2 files changed, 0 insertions, 41 deletions
diff --git a/host/lib/utils/CMakeLists.txt b/host/lib/utils/CMakeLists.txt
index fd3249099..19dde9a56 100644
--- a/host/lib/utils/CMakeLists.txt
+++ b/host/lib/utils/CMakeLists.txt
@@ -134,7 +134,6 @@ LIBUHD_APPEND_SOURCES(
${CMAKE_CURRENT_SOURCE_DIR}/log.cpp
${CMAKE_CURRENT_SOURCE_DIR}/msg.cpp
${CMAKE_CURRENT_SOURCE_DIR}/paths.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/props.cpp
${CMAKE_CURRENT_SOURCE_DIR}/static.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tasks.cpp
${CMAKE_CURRENT_SOURCE_DIR}/thread_priority.cpp
diff --git a/host/lib/utils/props.cpp b/host/lib/utils/props.cpp
deleted file mode 100644
index fc9f8e63f..000000000
--- a/host/lib/utils/props.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// Copyright 2010 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
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-//
-
-#include <uhd/utils/props.hpp>
-
-using namespace uhd;
-
-named_prop_t::named_prop_t(
- const wax::obj &key,
- const std::string &name
-):
- key(key),
- name(name)
-{
- /* NOP */
-}
-
-named_prop_t named_prop_t::extract(
- const wax::obj &key,
- const std::string &name
-){
- if (key.type() == typeid(named_prop_t)){
- return key.as<named_prop_t>();
- }
- return named_prop_t(key, name);
-}