aboutsummaryrefslogtreecommitdiffstats
path: root/include/grgsm/decoding
diff options
context:
space:
mode:
authorptrkrysik <ptrkrysik@gmail.com>2014-12-13 10:11:00 +0100
committerptrkrysik <ptrkrysik@gmail.com>2014-12-13 10:11:00 +0100
commit3be74a732b3fc4de0f99249e8bca975fee760210 (patch)
tree81731b4d5022ce40f8b0983c310c42f7d1a6838f /include/grgsm/decoding
parent0cd9ef0a801eeab7f501d012006f379b86c887a1 (diff)
Changed grgsm install directories and prefixes from "gsm" to "grgsm". The old prefix caused conflicts with libraries already available.
Diffstat (limited to 'include/grgsm/decoding')
-rw-r--r--include/grgsm/decoding/CMakeLists.txt25
-rw-r--r--include/grgsm/decoding/control_channels_decoder.h59
2 files changed, 84 insertions, 0 deletions
diff --git a/include/grgsm/decoding/CMakeLists.txt b/include/grgsm/decoding/CMakeLists.txt
new file mode 100644
index 0000000..3fa27ac
--- /dev/null
+++ b/include/grgsm/decoding/CMakeLists.txt
@@ -0,0 +1,25 @@
+# Copyright 2011,2012 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.
+
+########################################################################
+# Install public header files
+########################################################################
+install(FILES
+ control_channels_decoder.h DESTINATION include/grgsm/decoding
+)
diff --git a/include/grgsm/decoding/control_channels_decoder.h b/include/grgsm/decoding/control_channels_decoder.h
new file mode 100644
index 0000000..a3a8d8c
--- /dev/null
+++ b/include/grgsm/decoding/control_channels_decoder.h
@@ -0,0 +1,59 @@
+/* -*- c++ -*- */
+/*
+ * @file
+ * @author Piotr Krysik <ptrkrysik@gmail.com>
+ * @section LICENSE
+ *
+ * Gr-gsm 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.
+ *
+ * Gr-gsm 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 gr-gsm; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
+ */
+
+
+#ifndef INCLUDED_GSM_CONTROL_CHANNELS_DECODER_H
+#define INCLUDED_GSM_CONTROL_CHANNELS_DECODER_H
+
+#include <grgsm/api.h>
+#include <gnuradio/block.h>
+
+namespace gr {
+ namespace gsm {
+
+ /*!
+ * \brief <+description of block+>
+ * \ingroup gsm
+ *
+ */
+ class GSM_API control_channels_decoder : virtual public gr::block
+ {
+ public:
+ typedef boost::shared_ptr<control_channels_decoder> sptr;
+
+ /*!
+ * \brief Return a shared_ptr to a new instance of gsm::control_channels_decoder.
+ *
+ * To avoid accidental use of raw pointers, gsm::control_channels_decoder's
+ * constructor is in a private implementation
+ * class. gsm::control_channels_decoder::make is the public interface for
+ * creating new instances.
+ */
+ static sptr make();
+
+ };
+
+ } // namespace gsm
+} // namespace gr
+
+#endif /* INCLUDED_GSM_CONTROL_CHANNELS_DECODER_H */
+