diff options
author | Rob Savoye | 2010-11-25 13:00:30 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-25 13:00:30 -0700 |
commit | 29c731728439f505582d62a2703ce1515a45e869 (patch) | |
tree | 6d9eb7e0d5e6a4dd9f86b83ca739ee7e76a748f7 /gr-run-waveform/run_waveform.cc | |
parent | 860164ebdb0dd76ce70ad912a8d2ebdd768e8329 (diff) | |
download | gnuradio-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.cc | 3 |
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)"); } |