diff options
author | Tim Besard <tim.besard@gmail.com> | 2011-11-02 15:11:59 +0100 |
---|---|---|
committer | Tim Besard <tim.besard@gmail.com> | 2011-11-02 15:11:59 +0100 |
commit | f9531223b72f8337b8d774c9e3a0d0b0f9ffcc7b (patch) | |
tree | 6942ff464682600061fde704ed13b50048fcc7d2 /src/Output.cpp | |
parent | ba67ca081a78a9dd6fb5f36f8d2bc2dea0f5224a (diff) |
Cleaning up a bit.
Diffstat (limited to 'src/Output.cpp')
-rw-r--r-- | src/Output.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/Output.cpp b/src/Output.cpp index 84eb0df..bfffe0d 100644 --- a/src/Output.cpp +++ b/src/Output.cpp @@ -9,14 +9,22 @@ * Douglas M. Pase - initial API and implementation * *******************************************************************************/ +// +// Configuration +// + +// Implementation header +#include "Output.h" + +// System includes #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "Output.h" -#include "Types.h" -#include "Experiment.h" +// +// Implementation +// void Output::print(Experiment &e, int64 ops, double secs, double ck_res) { if (e.output_mode == Experiment::CSV) { |