summaryrefslogtreecommitdiff
path: root/gr-run-waveform/run_waveform.cc
diff options
context:
space:
mode:
authorRob Savoye2010-11-25 13:00:30 -0700
committerRob Savoye2010-11-25 13:00:30 -0700
commit29c731728439f505582d62a2703ce1515a45e869 (patch)
tree6d9eb7e0d5e6a4dd9f86b83ca739ee7e76a748f7 /gr-run-waveform/run_waveform.cc
parent860164ebdb0dd76ce70ad912a8d2ebdd768e8329 (diff)
downloadgnuradio-29c731728439f505582d62a2703ce1515a45e869.tar.gz
gnuradio-29c731728439f505582d62a2703ce1515a45e869.tar.bz2
gnuradio-29c731728439f505582d62a2703ce1515a45e869.zip
add some comments
Diffstat (limited to 'gr-run-waveform/run_waveform.cc')
-rw-r--r--gr-run-waveform/run_waveform.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-run-waveform/run_waveform.cc b/gr-run-waveform/run_waveform.cc
index b96a99ad2..e34d7d58e 100644
--- a/gr-run-waveform/run_waveform.cc
+++ b/gr-run-waveform/run_waveform.cc
@@ -52,7 +52,7 @@ load_waveform (void)
string file;
while (std::getline(in, line)) {
file += line;
- cerr << line << endl;
+ cerr << line << endl; // FIXME: this is only for debugging
}
// Evaluate the file
@@ -60,6 +60,7 @@ load_waveform (void)
in.close();
+ // Execute our example
return scm_c_eval_string("(hello-world)");
}