summaryrefslogtreecommitdiff
path: root/gr-blocks
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks')
-rw-r--r--gr-blocks/lib/file_meta_sink_impl.cc11
-rw-r--r--gr-blocks/lib/file_meta_source_impl.cc11
2 files changed, 14 insertions, 8 deletions
diff --git a/gr-blocks/lib/file_meta_sink_impl.cc b/gr-blocks/lib/file_meta_sink_impl.cc
index ad16e9fca..b707bfac4 100644
--- a/gr-blocks/lib/file_meta_sink_impl.cc
+++ b/gr-blocks/lib/file_meta_sink_impl.cc
@@ -26,14 +26,12 @@
#include "file_meta_sink_impl.h"
#include <gr_io_signature.h>
+#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdexcept>
-#include <cstdio>
-
-namespace gr {
- namespace blocks {
+#include <stdio.h>
// win32 (mingw/msvc) specific
#ifdef HAVE_IO_H
@@ -52,6 +50,11 @@ namespace gr {
#define OUR_O_LARGEFILE 0
#endif
+
+namespace gr {
+ namespace blocks {
+
+
file_meta_sink::sptr
file_meta_sink::make(size_t itemsize, const std::string &filename,
double samp_rate, double relative_rate,
diff --git a/gr-blocks/lib/file_meta_source_impl.cc b/gr-blocks/lib/file_meta_source_impl.cc
index fb39b205b..42fdabb54 100644
--- a/gr-blocks/lib/file_meta_source_impl.cc
+++ b/gr-blocks/lib/file_meta_source_impl.cc
@@ -26,14 +26,12 @@
#include "file_meta_source_impl.h"
#include <gr_io_signature.h>
+#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdexcept>
-#include <cstdio>
-
-namespace gr {
- namespace blocks {
+#include <stdio.h>
// win32 (mingw/msvc) specific
#ifdef HAVE_IO_H
@@ -52,6 +50,11 @@ namespace gr {
#define OUR_O_LARGEFILE 0
#endif
+
+namespace gr {
+ namespace blocks {
+
+
file_meta_source::sptr
file_meta_source::make(const std::string &filename,
bool repeat,