summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/select_handler.cc
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-05-02 12:41:28 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-05-02 12:41:28 -0700
commit4209a466dbaf45a0c84474b186d269afbddec0f5 (patch)
treeceabbd3678662b0e3d5c4cb61990012d7398992f /gnuradio-runtime/lib/select_handler.cc
parent3a2bb59d93bbdf272f387898beed5e5d6d965afd (diff)
runtime: remove dead select_handler and dispatcher
Diffstat (limited to 'gnuradio-runtime/lib/select_handler.cc')
-rw-r--r--gnuradio-runtime/lib/select_handler.cc40
1 files changed, 0 insertions, 40 deletions
diff --git a/gnuradio-runtime/lib/select_handler.cc b/gnuradio-runtime/lib/select_handler.cc
deleted file mode 100644
index ca99ce6ce8..0000000000
--- a/gnuradio-runtime/lib/select_handler.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 2005,2013 Free Software Foundation, Inc.
- *
- * This file is part of GNU Radio
- *
- * GNU Radio 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, or (at your option)
- * any later version.
- *
- * GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <gnuradio/select_handler.h>
-
-namespace gr {
-
- select_handler::select_handler(int fd)
- : d_fd(fd)
- {
- }
-
- select_handler::~select_handler()
- {
- }
-
-} /* namespace gr */