- renamed garage to bit_slicer
git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@416 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
@@ -25,6 +25,6 @@ install(FILES
|
||||
api.h
|
||||
square_ff.h
|
||||
square2_ff.h
|
||||
garage.h
|
||||
bit_slicer.h
|
||||
pocsag_decoder.h DESTINATION include/jay
|
||||
)
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef INCLUDED_JAY_GARAGE_H
|
||||
#define INCLUDED_JAY_GARAGE_H
|
||||
#ifndef INCLUDED_JAY_BIT_SLICER_H
|
||||
#define INCLUDED_JAY_BIT_SLICER_H
|
||||
|
||||
#include <jay/api.h>
|
||||
#include <gnuradio/block.h>
|
||||
@@ -33,17 +33,17 @@ namespace gr {
|
||||
* \ingroup jay
|
||||
*
|
||||
*/
|
||||
class JAY_API garage : virtual public gr::block
|
||||
class JAY_API bit_slicer : virtual public gr::block
|
||||
{
|
||||
public:
|
||||
typedef boost::shared_ptr<garage> sptr;
|
||||
typedef boost::shared_ptr<bit_slicer> sptr;
|
||||
|
||||
/*!
|
||||
* \brief Return a shared_ptr to a new instance of jay::garage.
|
||||
* \brief Return a shared_ptr to a new instance of jay::bit_slicer.
|
||||
*
|
||||
* To avoid accidental use of raw pointers, jay::garage's
|
||||
* To avoid accidental use of raw pointers, jay::bit_slicer's
|
||||
* constructor is in a private implementation
|
||||
* class. jay::garage::make is the public interface for
|
||||
* class. jay::bit_slicer::make is the public interface for
|
||||
* creating new instances.
|
||||
*/
|
||||
static sptr make(int sampleRate, int samplesPerSym, float kLoopfilter, float kThreshold);
|
||||
@@ -52,5 +52,5 @@ namespace gr {
|
||||
} // namespace jay
|
||||
} // namespace gr
|
||||
|
||||
#endif /* INCLUDED_JAY_GARAGE_H */
|
||||
#endif /* INCLUDED_JAY_BIT_SLICER_H */
|
||||
|
||||
Reference in New Issue
Block a user