Skip to content

Commit

Permalink
code formatting, clang hints applied, still working
Browse files Browse the repository at this point in the history
  • Loading branch information
smarek committed Jan 5, 2023
1 parent 90b985e commit 015b1f1
Show file tree
Hide file tree
Showing 11 changed files with 610 additions and 684 deletions.
10 changes: 5 additions & 5 deletions grc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# Boston, MA 02110-1301, USA.

install(FILES
fsk4_demod_ff.xml
fsk4_generic_f.xml
fsk4_apco25_f.xml
fsk4_rdlap_f.xml DESTINATION share/gnuradio/grc/blocks
)
fsk4_demod_ff.xml
fsk4_generic_f.xml
fsk4_apco25_f.xml
fsk4_rdlap_f.xml DESTINATION share/gnuradio/grc/blocks
)
12 changes: 6 additions & 6 deletions include/fsk4/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
# Install public header files
########################################################################
install(FILES
api.h
demod_ff.h
generic_f.h
apco25_f.h
rdlap_f.h DESTINATION include/fsk4
)
api.h
demod_ff.h
generic_f.h
apco25_f.h
rdlap_f.h DESTINATION include/fsk4
)
29 changes: 14 additions & 15 deletions include/fsk4/apco25_f.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,22 @@ namespace gr::fsk4 {
* \ingroup fsk4
*
*/
class FSK4_API apco25_f : virtual public gr::block
{
public:
typedef boost::shared_ptr<apco25_f> sptr;

/*!
* \brief Return a shared_ptr to a new instance of fsk4::apco25_f.
*
* To avoid accidental use of raw pointers, fsk4::apco25_f's
* constructor is in a private implementation
* class. fsk4::apco25_f::make is the public interface for
* creating new instances.
*/
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
class FSK4_API apco25_f : virtual public gr::block {
public:
typedef boost::shared_ptr<apco25_f> sptr;

/*!
* \brief Return a shared_ptr to a new instance of fsk4::apco25_f.
*
* To avoid accidental use of raw pointers, fsk4::apco25_f's
* constructor is in a private implementation
* class. fsk4::apco25_f::make is the public interface for
* creating new instances.
*/
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
};

} // namespace gr
} // namespace gr

#endif /* INCLUDED_FSK4_APCO25_F_H */

47 changes: 23 additions & 24 deletions include/fsk4/generic_f.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,29 @@
#include <gnuradio/message.h>

namespace gr {
namespace fsk4 {

/*!
* \brief <+description of block+>
* \ingroup fsk4
*
*/
class FSK4_API generic_f : virtual public gr::block
{
public:
typedef boost::shared_ptr<generic_f> sptr;

/*!
* \brief Return a shared_ptr to a new instance of fsk4::generic_f.
*
* To avoid accidental use of raw pointers, fsk4::generic_f's
* constructor is in a private implementation
* class. fsk4::generic_f::make is the public interface for
* creating new instances.
*/
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
};

} // namespace fsk4
namespace fsk4 {

/*!
* \brief <+description of block+>
* \ingroup fsk4
*
*/
class FSK4_API generic_f : virtual public gr::block {
public:
typedef boost::shared_ptr<generic_f> sptr;

/*!
* \brief Return a shared_ptr to a new instance of fsk4::generic_f.
*
* To avoid accidental use of raw pointers, fsk4::generic_f's
* constructor is in a private implementation
* class. fsk4::generic_f::make is the public interface for
* creating new instances.
*/
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
};

} // namespace fsk4
} // namespace gr

#endif /* INCLUDED_FSK4_GENERIC_F_H */
Expand Down
Loading

0 comments on commit 015b1f1

Please sign in to comment.