summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/block.cpp2
-rw-r--r--lib/block_actor.cpp2
-rw-r--r--lib/block_allocator.cpp2
-rw-r--r--lib/block_handlers.cpp2
-rw-r--r--lib/block_task.cpp2
-rw-r--r--lib/debug.cpp2
-rw-r--r--lib/element.cpp2
-rw-r--r--lib/element_impl.hpp2
-rw-r--r--lib/gr_block.cpp2
-rw-r--r--lib/gr_hier_block2.cpp2
-rw-r--r--lib/gr_sync_block.cpp2
-rw-r--r--lib/gr_top_block.cpp2
-rw-r--r--lib/gras_impl/bitset.hpp2
-rw-r--r--lib/gras_impl/block_actor.hpp2
-rw-r--r--lib/gras_impl/buffer_queue.hpp2
-rw-r--r--lib/gras_impl/debug.hpp2
-rw-r--r--lib/gras_impl/input_buffer_queues.hpp2
-rw-r--r--lib/gras_impl/interruptible_thread.hpp2
-rw-r--r--lib/gras_impl/messages.hpp2
-rw-r--r--lib/gras_impl/output_buffer_queues.hpp2
-rw-r--r--lib/gras_impl/token.hpp2
-rw-r--r--lib/hier_block.cpp2
-rw-r--r--lib/input_handlers.cpp2
-rw-r--r--lib/output_handlers.cpp2
-rw-r--r--lib/sbuffer.cpp2
-rw-r--r--lib/tag_handlers.hpp2
-rw-r--r--lib/top_block.cpp2
-rw-r--r--lib/topology_handler.cpp2
28 files changed, 28 insertions, 28 deletions
diff --git a/lib/block.cpp b/lib/block.cpp
index 40b220b..75fd910 100644
--- a/lib/block.cpp
+++ b/lib/block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gnuradio/block.hpp>
diff --git a/lib/block_actor.cpp b/lib/block_actor.cpp
index 6fc3e25..c0a294a 100644
--- a/lib/block_actor.cpp
+++ b/lib/block_actor.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>
#include <boost/thread/thread.hpp>
diff --git a/lib/block_allocator.cpp b/lib/block_allocator.cpp
index ad39159..950fddb 100644
--- a/lib/block_allocator.cpp
+++ b/lib/block_allocator.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gras_impl/block_actor.hpp>
diff --git a/lib/block_handlers.cpp b/lib/block_handlers.cpp
index 6925a60..694f781 100644
--- a/lib/block_handlers.cpp
+++ b/lib/block_handlers.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>
#include <boost/make_shared.hpp>
diff --git a/lib/block_task.cpp b/lib/block_task.cpp
index d1ff52b..f18b9d4 100644
--- a/lib/block_task.cpp
+++ b/lib/block_task.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>
#include "tag_handlers.hpp"
diff --git a/lib/debug.cpp b/lib/debug.cpp
index f2c3700..988994f 100644
--- a/lib/debug.cpp
+++ b/lib/debug.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/debug.hpp>
diff --git a/lib/element.cpp b/lib/element.cpp
index c7afb8b..9987bd4 100644
--- a/lib/element.cpp
+++ b/lib/element.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gnuradio/element.hpp>
diff --git a/lib/element_impl.hpp b/lib/element_impl.hpp
index 988bbbf..90c4fe2 100644
--- a/lib/element_impl.hpp
+++ b/lib/element_impl.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_ELEMENT_IMPL_HPP
#define INCLUDED_LIBGRAS_ELEMENT_IMPL_HPP
diff --git a/lib/gr_block.cpp b/lib/gr_block.cpp
index 821722b..20acecc 100644
--- a/lib/gr_block.cpp
+++ b/lib/gr_block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gr_block.h>
diff --git a/lib/gr_hier_block2.cpp b/lib/gr_hier_block2.cpp
index 7b61d0f..b40755a 100644
--- a/lib/gr_hier_block2.cpp
+++ b/lib/gr_hier_block2.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gr_hier_block2.h>
diff --git a/lib/gr_sync_block.cpp b/lib/gr_sync_block.cpp
index 5344ac8..e883861 100644
--- a/lib/gr_sync_block.cpp
+++ b/lib/gr_sync_block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gr_sync_block.h>
diff --git a/lib/gr_top_block.cpp b/lib/gr_top_block.cpp
index 9c4b68e..3b3a5f3 100644
--- a/lib/gr_top_block.cpp
+++ b/lib/gr_top_block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gr_top_block.h>
diff --git a/lib/gras_impl/bitset.hpp b/lib/gras_impl/bitset.hpp
index 24bc2df..5ea2acb 100644
--- a/lib/gras_impl/bitset.hpp
+++ b/lib/gras_impl/bitset.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_BITSET_HPP
#define INCLUDED_LIBGRAS_IMPL_BITSET_HPP
diff --git a/lib/gras_impl/block_actor.hpp b/lib/gras_impl/block_actor.hpp
index f321f22..0d193b0 100644
--- a/lib/gras_impl/block_actor.hpp
+++ b/lib/gras_impl/block_actor.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_BLOCK_ACTOR_HPP
#define INCLUDED_LIBGRAS_IMPL_BLOCK_ACTOR_HPP
diff --git a/lib/gras_impl/buffer_queue.hpp b/lib/gras_impl/buffer_queue.hpp
index b3c9cf7..bde4986 100644
--- a/lib/gras_impl/buffer_queue.hpp
+++ b/lib/gras_impl/buffer_queue.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_BUFFER_QUEUE_HPP
#define INCLUDED_LIBGRAS_IMPL_BUFFER_QUEUE_HPP
diff --git a/lib/gras_impl/debug.hpp b/lib/gras_impl/debug.hpp
index a817e12..03ad30f 100644
--- a/lib/gras_impl/debug.hpp
+++ b/lib/gras_impl/debug.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_DEBUG_HPP
#define INCLUDED_LIBGRAS_IMPL_DEBUG_HPP
diff --git a/lib/gras_impl/input_buffer_queues.hpp b/lib/gras_impl/input_buffer_queues.hpp
index 5adb06d..439401c 100644
--- a/lib/gras_impl/input_buffer_queues.hpp
+++ b/lib/gras_impl/input_buffer_queues.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_INPUT_BUFFERS_HPP
#define INCLUDED_LIBGRAS_IMPL_INPUT_BUFFERS_HPP
diff --git a/lib/gras_impl/interruptible_thread.hpp b/lib/gras_impl/interruptible_thread.hpp
index 9ac7349..1cb9b64 100644
--- a/lib/gras_impl/interruptible_thread.hpp
+++ b/lib/gras_impl/interruptible_thread.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_INTERRUPTIBLE_THREAD_HPP
#define INCLUDED_LIBGRAS_IMPL_INTERRUPTIBLE_THREAD_HPP
diff --git a/lib/gras_impl/messages.hpp b/lib/gras_impl/messages.hpp
index ed0ef81..81c66b7 100644
--- a/lib/gras_impl/messages.hpp
+++ b/lib/gras_impl/messages.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_MESSAGES_HPP
#define INCLUDED_LIBGRAS_IMPL_MESSAGES_HPP
diff --git a/lib/gras_impl/output_buffer_queues.hpp b/lib/gras_impl/output_buffer_queues.hpp
index 69c5eb0..a740b2d 100644
--- a/lib/gras_impl/output_buffer_queues.hpp
+++ b/lib/gras_impl/output_buffer_queues.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_OUTPUT_BUFFER_QUEUES_HPP
#define INCLUDED_LIBGRAS_IMPL_OUTPUT_BUFFER_QUEUES_HPP
diff --git a/lib/gras_impl/token.hpp b/lib/gras_impl/token.hpp
index d5b438a..db5f047 100644
--- a/lib/gras_impl/token.hpp
+++ b/lib/gras_impl/token.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_IMPL_TOKEN_HPP
#define INCLUDED_LIBGRAS_IMPL_TOKEN_HPP
diff --git a/lib/hier_block.cpp b/lib/hier_block.cpp
index 9a25597..ef29cc2 100644
--- a/lib/hier_block.cpp
+++ b/lib/hier_block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gnuradio/hier_block.hpp>
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp
index 193647d..8d778f1 100644
--- a/lib/input_handlers.cpp
+++ b/lib/input_handlers.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>
#include <boost/foreach.hpp>
diff --git a/lib/output_handlers.cpp b/lib/output_handlers.cpp
index 5165b2a..c3d8392 100644
--- a/lib/output_handlers.cpp
+++ b/lib/output_handlers.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>
#include <boost/foreach.hpp>
diff --git a/lib/sbuffer.cpp b/lib/sbuffer.cpp
index 6662bb7..3133caa 100644
--- a/lib/sbuffer.cpp
+++ b/lib/sbuffer.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gnuradio/sbuffer.hpp>
#include <numanuma.hpp>
diff --git a/lib/tag_handlers.hpp b/lib/tag_handlers.hpp
index 0a89ef1..9e20bc0 100644
--- a/lib/tag_handlers.hpp
+++ b/lib/tag_handlers.hpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_LIBGRAS_TAG_HANDLERS_HPP
#define INCLUDED_LIBGRAS_TAG_HANDLERS_HPP
diff --git a/lib/top_block.cpp b/lib/top_block.cpp
index b2c2e8d..f5d4517 100644
--- a/lib/top_block.cpp
+++ b/lib/top_block.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "element_impl.hpp"
#include <gnuradio/top_block.hpp>
diff --git a/lib/topology_handler.cpp b/lib/topology_handler.cpp
index b24bb98..555e8c9 100644
--- a/lib/topology_handler.cpp
+++ b/lib/topology_handler.cpp
@@ -12,7 +12,7 @@
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
-// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <gras_impl/block_actor.hpp>