Several enhancements to gr-trellis and gnuradio-examples/python/channel-coding:
[debian/gnuradio] / gr-trellis / src / lib / trellis_encoder_bs.h
index 2ddf5505c6fc208e2b66f02dc00d7b32513bbe77..d0a99ffe7a1049dc76486bf87c28277bf49f5d1d 100644 (file)
@@ -31,7 +31,7 @@
 class trellis_encoder_bs;
 typedef boost::shared_ptr<trellis_encoder_bs> trellis_encoder_bs_sptr;
 
-trellis_encoder_bs_sptr trellis_make_encoder_bs (const fsm &FSM, const int ST);
+trellis_encoder_bs_sptr trellis_make_encoder_bs (const fsm &FSM, int ST);
 
 /*!
  * \brief Convolutional encoder.
@@ -42,10 +42,10 @@ trellis_encoder_bs_sptr trellis_make_encoder_bs (const fsm &FSM, const int ST);
 class trellis_encoder_bs : public gr_sync_block
 {
 private:
-  friend trellis_encoder_bs_sptr trellis_make_encoder_bs (const fsm &FSM, const int ST);
+  friend trellis_encoder_bs_sptr trellis_make_encoder_bs (const fsm &FSM, int ST);
   fsm d_FSM;
   int d_ST;
-  trellis_encoder_bs (const fsm &FSM, const int ST); 
+  trellis_encoder_bs (const fsm &FSM, int ST); 
 
 public:
   fsm FSM () const { return d_FSM; }