Correction in plotting.h
diff --git a/include/plotting/plotting.hpp b/include/plotting/plotting.hpp
index 9f8fcd3..d9d869e 100644
--- a/include/plotting/plotting.hpp
+++ b/include/plotting/plotting.hpp
@@ -44,8 +44,7 @@
    }
    (*current_figure) << "plot ";
    
-   (*current_figure) << current_figure->file1d(y) <<"title \'"  << titl
-   e << "\' with lines ";
+   (*current_figure) << current_figure->file1d(y) <<"title \'" << title << "\' with lines ";
    (*current_figure) << std::endl; 
 }
 
diff --git a/lib/bursts_printer_impl.cc b/lib/burst_printer/bursts_printer_impl.cc
similarity index 100%
rename from lib/bursts_printer_impl.cc
rename to lib/burst_printer/bursts_printer_impl.cc
diff --git a/lib/bursts_printer_impl.h b/lib/burst_printer/bursts_printer_impl.h
similarity index 100%
rename from lib/bursts_printer_impl.h
rename to lib/burst_printer/bursts_printer_impl.h
diff --git a/lib/qa_gsm.cc b/lib/qa_gsm.cc
deleted file mode 100644
index b84c0ea..0000000
--- a/lib/qa_gsm.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 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.
- */
-
-/*
- * This class gathers together all the test cases for the gr-filter
- * directory into a single test suite.  As you create new test cases,
- * add them here.
- */
-
-#include "qa_gsm.h"
-#include "qa_receiver.h"
-
-//this is just a stub created by gr_modtool
-
-CppUnit::TestSuite *
-qa_gsm::suite()
-{
-  CppUnit::TestSuite *s = new CppUnit::TestSuite("gsm");
-  s->addTest(gr::gsm::qa_receiver::suite());
-
-  return s;
-}
diff --git a/lib/qa_gsm.h b/lib/qa_gsm.h
deleted file mode 100644
index f5ce6cd..0000000
--- a/lib/qa_gsm.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 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.
- */
-
-#ifndef _QA_GSM_H_
-#define _QA_GSM_H_
-
-#include <gnuradio/attributes.h>
-#include <cppunit/TestSuite.h>
-
-//this is just a stub created by gr_modtool
-
-//! collect all the tests for the gr-filter directory
-
-class __GR_ATTR_EXPORT qa_gsm
-{
- public:
-  //! return suite of tests for all of gr-filter directory
-  static CppUnit::TestSuite *suite();
-};
-
-#endif /* _QA_GSM_H_ */
diff --git a/lib/qa_receiver.cc b/lib/qa_receiver.cc
deleted file mode 100644
index 34949dd..0000000
--- a/lib/qa_receiver.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- c++ -*- */
-/* 
- * Copyright 2014 <+YOU OR YOUR COMPANY+>.
- * 
- * This 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.
- * 
- * This software 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 software; see the file COPYING.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street,
- * Boston, MA 02110-1301, USA.
- */
-
-
-#include <gnuradio/attributes.h>
-#include <cppunit/TestAssert.h>
-#include "qa_receiver.h"
-#include <gsm/receiver.h>
-
-//this is just a stub created by gr_modtool
-
-namespace gr {
-  namespace gsm {
-
-    void
-    qa_receiver::t1()
-    {
-        // Put test here
-    }
-
-  } /* namespace gsm */
-} /* namespace gr */
-
diff --git a/lib/qa_receiver.h b/lib/qa_receiver.h
deleted file mode 100644
index 085b45f..0000000
--- a/lib/qa_receiver.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- c++ -*- */
-/* 
- * Copyright 2014 <+YOU OR YOUR COMPANY+>.
- * 
- * This 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.
- * 
- * This software 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 software; see the file COPYING.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street,
- * Boston, MA 02110-1301, USA.
- */
-
-//this is just a stub created by gr_modtool
-
-#ifndef _QA_RECEIVER_H_
-#define _QA_RECEIVER_H_
-
-#include <cppunit/extensions/HelperMacros.h>
-#include <cppunit/TestCase.h>
-
-namespace gr {
-  namespace gsm {
-
-    class qa_receiver : public CppUnit::TestCase
-    {
-    public:
-      CPPUNIT_TEST_SUITE(qa_receiver);
-      CPPUNIT_TEST(t1);
-      CPPUNIT_TEST_SUITE_END();
-
-    private:
-      void t1();
-    };
-
-  } /* namespace gsm */
-} /* namespace gr */
-
-#endif /* _QA_RECEIVER_H_ */
-
diff --git a/lib/assert.h b/lib/receiver/assert.h
similarity index 100%
rename from lib/assert.h
rename to lib/receiver/assert.h
diff --git a/lib/gsm_constants.h b/lib/receiver/gsm_constants.h
similarity index 100%
rename from lib/gsm_constants.h
rename to lib/receiver/gsm_constants.h
diff --git a/lib/receiver_config.cc b/lib/receiver/receiver_config.cc
similarity index 100%
rename from lib/receiver_config.cc
rename to lib/receiver/receiver_config.cc
diff --git a/lib/receiver_config.h b/lib/receiver/receiver_config.h
similarity index 100%
rename from lib/receiver_config.h
rename to lib/receiver/receiver_config.h
diff --git a/lib/receiver_impl.cc b/lib/receiver/receiver_impl.cc
similarity index 100%
rename from lib/receiver_impl.cc
rename to lib/receiver/receiver_impl.cc
diff --git a/lib/receiver_impl.h b/lib/receiver/receiver_impl.h
similarity index 100%
rename from lib/receiver_impl.h
rename to lib/receiver/receiver_impl.h
diff --git a/lib/test_gsm.cc b/lib/test_gsm.cc
deleted file mode 100644
index 3fdb4ad..0000000
--- a/lib/test_gsm.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 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.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <cppunit/TextTestRunner.h>
-#include <cppunit/XmlOutputter.h>
-
-#include <gnuradio/unittests.h>
-#include "qa_gsm.h"
-#include <iostream>
-
-int
-main (int argc, char **argv)
-{
-  CppUnit::TextTestRunner runner;
-  std::ofstream xmlfile(get_unittest_path("gsm.xml").c_str());
-  CppUnit::XmlOutputter *xmlout = new CppUnit::XmlOutputter(&runner.result(), xmlfile);
-
-  runner.addTest(qa_gsm::suite());
-  runner.setOutputter(xmlout);
-
-  bool was_successful = runner.run("", false);
-
-  return was_successful ? 0 : 1;
-}