summaryrefslogtreecommitdiffstats
path: root/tester/covoar/TraceReaderLogQEMU.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-05-09 21:50:37 +1000
committerChris Johns <chrisj@rtems.org>2014-06-18 16:48:08 +1200
commit100f517ab37265acdf067e36b6860020ec8b2184 (patch)
tree2316c8b888e11dcbcfbfc66a0c1e31991ea20656 /tester/covoar/TraceReaderLogQEMU.h
parent4.11: Add ntp patch. (diff)
downloadrtems-tools-100f517ab37265acdf067e36b6860020ec8b2184.tar.bz2
covoar: Merger the covoar source from rtems-testing.git.
Use waf to build covoar.
Diffstat (limited to 'tester/covoar/TraceReaderLogQEMU.h')
-rw-r--r--tester/covoar/TraceReaderLogQEMU.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/tester/covoar/TraceReaderLogQEMU.h b/tester/covoar/TraceReaderLogQEMU.h
new file mode 100644
index 0000000..c4877fd
--- /dev/null
+++ b/tester/covoar/TraceReaderLogQEMU.h
@@ -0,0 +1,50 @@
+/*! @file TraceReaderLogQEMU.h
+ * @brief TraceReaderLogQEMU Specification
+ *
+ * This file contains the specification of the TraceReaderLogQEMU class.
+ */
+
+#ifndef __TRACE_READER_LOG_QEMU_H__
+#define __TRACE_READER_LOG_QEMU_H__
+
+#include "TraceReaderBase.h"
+
+namespace Trace {
+
+ /*! @class TraceReaderLogQEMU
+ *
+ * This is the specification of the TraceReader base class.
+ * All TraceReader implementations inherit from this class.
+ */
+ class TraceReaderLogQEMU: public TraceReaderBase {
+
+ public:
+
+
+ /*!
+ * This method constructs a TraceReaderLogQEMU instance.
+ */
+ TraceReaderLogQEMU();
+
+ /*!
+ * This method destructs a TraceReaderLogQEMU instance.
+ */
+ virtual ~TraceReaderLogQEMU();
+
+ /*!
+ * This method processes the coverage information from the input
+ * @a file and adds it to the specified @a executableInformation.
+ *
+ * @param[in] file is the coverage file to process
+ * @param[in] executableInformation is the information for an
+ * associated executable
+ *
+ * @return Returns TRUE if the method succeeded and FALSE if it failed.
+ */
+ virtual bool processFile(
+ const char* const file
+ );
+ };
+
+}
+#endif