summaryrefslogtreecommitdiff
path: root/covoar/TraceReaderLogQEMU.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/TraceReaderLogQEMU.h')
-rw-r--r--covoar/TraceReaderLogQEMU.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/covoar/TraceReaderLogQEMU.h b/covoar/TraceReaderLogQEMU.h
deleted file mode 100644
index c4877fd..0000000
--- a/covoar/TraceReaderLogQEMU.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*! @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