Skip to content

Commit 015b1f1

Browse files
committed
code formatting, clang hints applied, still working
1 parent 90b985e commit 015b1f1

11 files changed

+610
-684
lines changed

grc/CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# Boston, MA 02110-1301, USA.
1919

2020
install(FILES
21-
fsk4_demod_ff.xml
22-
fsk4_generic_f.xml
23-
fsk4_apco25_f.xml
24-
fsk4_rdlap_f.xml DESTINATION share/gnuradio/grc/blocks
25-
)
21+
fsk4_demod_ff.xml
22+
fsk4_generic_f.xml
23+
fsk4_apco25_f.xml
24+
fsk4_rdlap_f.xml DESTINATION share/gnuradio/grc/blocks
25+
)

include/fsk4/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
# Install public header files
2222
########################################################################
2323
install(FILES
24-
api.h
25-
demod_ff.h
26-
generic_f.h
27-
apco25_f.h
28-
rdlap_f.h DESTINATION include/fsk4
29-
)
24+
api.h
25+
demod_ff.h
26+
generic_f.h
27+
apco25_f.h
28+
rdlap_f.h DESTINATION include/fsk4
29+
)

include/fsk4/apco25_f.h

+14-15
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,22 @@ namespace gr::fsk4 {
3434
* \ingroup fsk4
3535
*
3636
*/
37-
class FSK4_API apco25_f : virtual public gr::block
38-
{
39-
public:
40-
typedef boost::shared_ptr<apco25_f> sptr;
41-
42-
/*!
43-
* \brief Return a shared_ptr to a new instance of fsk4::apco25_f.
44-
*
45-
* To avoid accidental use of raw pointers, fsk4::apco25_f's
46-
* constructor is in a private implementation
47-
* class. fsk4::apco25_f::make is the public interface for
48-
* creating new instances.
49-
*/
50-
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
37+
class FSK4_API apco25_f : virtual public gr::block {
38+
public:
39+
typedef boost::shared_ptr<apco25_f> sptr;
40+
41+
/*!
42+
* \brief Return a shared_ptr to a new instance of fsk4::apco25_f.
43+
*
44+
* To avoid accidental use of raw pointers, fsk4::apco25_f's
45+
* constructor is in a private implementation
46+
* class. fsk4::apco25_f::make is the public interface for
47+
* creating new instances.
48+
*/
49+
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
5150
};
5251

53-
} // namespace gr
52+
} // namespace gr
5453

5554
#endif /* INCLUDED_FSK4_APCO25_F_H */
5655

include/fsk4/generic_f.h

+23-24
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,29 @@
2828
#include <gnuradio/message.h>
2929

3030
namespace gr {
31-
namespace fsk4 {
32-
33-
/*!
34-
* \brief <+description of block+>
35-
* \ingroup fsk4
36-
*
37-
*/
38-
class FSK4_API generic_f : virtual public gr::block
39-
{
40-
public:
41-
typedef boost::shared_ptr<generic_f> sptr;
42-
43-
/*!
44-
* \brief Return a shared_ptr to a new instance of fsk4::generic_f.
45-
*
46-
* To avoid accidental use of raw pointers, fsk4::generic_f's
47-
* constructor is in a private implementation
48-
* class. fsk4::generic_f::make is the public interface for
49-
* creating new instances.
50-
*/
51-
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
52-
};
53-
54-
} // namespace fsk4
31+
namespace fsk4 {
32+
33+
/*!
34+
* \brief <+description of block+>
35+
* \ingroup fsk4
36+
*
37+
*/
38+
class FSK4_API generic_f : virtual public gr::block {
39+
public:
40+
typedef boost::shared_ptr<generic_f> sptr;
41+
42+
/*!
43+
* \brief Return a shared_ptr to a new instance of fsk4::generic_f.
44+
*
45+
* To avoid accidental use of raw pointers, fsk4::generic_f's
46+
* constructor is in a private implementation
47+
* class. fsk4::generic_f::make is the public interface for
48+
* creating new instances.
49+
*/
50+
static sptr make(gr::msg_queue::sptr queue, int processing_flags);
51+
};
52+
53+
} // namespace fsk4
5554
} // namespace gr
5655

5756
#endif /* INCLUDED_FSK4_GENERIC_F_H */

0 commit comments

Comments
 (0)