- renamed preamble_sync to pocsag_decoder

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@415 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-02-09 09:43:48 +00:00
parent cb8a024ef0
commit cd4f8ad51d
10 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -26,5 +26,5 @@ install(FILES
square_ff.h
square2_ff.h
garage.h
preamble_sync.h DESTINATION include/jay
pocsag_decoder.h DESTINATION include/jay
)
@@ -19,8 +19,8 @@
*/
#ifndef INCLUDED_JAY_PREAMBLE_SYNC_H
#define INCLUDED_JAY_PREAMBLE_SYNC_H
#ifndef INCLUDED_JAY_POCSAG_DECODER_H
#define INCLUDED_JAY_POCSAG_DECODER_H
#include <jay/api.h>
#include <gnuradio/block.h>
@@ -33,17 +33,17 @@ namespace gr {
* \ingroup jay
*
*/
class JAY_API preamble_sync : virtual public gr::block
class JAY_API pocsag_decoder : virtual public gr::block
{
public:
typedef boost::shared_ptr<preamble_sync> sptr;
typedef boost::shared_ptr<pocsag_decoder> sptr;
/*!
* \brief Return a shared_ptr to a new instance of jay::preamble_sync.
* \brief Return a shared_ptr to a new instance of jay::pocsag_decoder.
*
* To avoid accidental use of raw pointers, jay::preamble_sync's
* To avoid accidental use of raw pointers, jay::pocsag_decoder's
* constructor is in a private implementation
* class. jay::preamble_sync::make is the public interface for
* class. jay::pocsag_decoder::make is the public interface for
* creating new instances.
*/
static sptr make();
@@ -52,5 +52,5 @@ namespace gr {
} // namespace jay
} // namespace gr
#endif /* INCLUDED_JAY_PREAMBLE_SYNC_H */
#endif /* INCLUDED_JAY_POCSAG_DECODER_H */