summaryrefslogtreecommitdiff
path: root/covoar/CoverageReaderSkyeye.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/CoverageReaderSkyeye.h')
-rw-r--r--covoar/CoverageReaderSkyeye.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/covoar/CoverageReaderSkyeye.h b/covoar/CoverageReaderSkyeye.h
deleted file mode 100644
index 156d170..0000000
--- a/covoar/CoverageReaderSkyeye.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*! @file CoverageReaderSkyeye.h
- * @brief CoverageReaderSkyeye Specification
- *
- * This file contains the specification of the CoverageReaderSkyeye class.
- */
-
-#ifndef __COVERAGE_READER_Skyeye_H__
-#define __COVERAGE_READER_Skyeye_H__
-
-#include "CoverageReaderBase.h"
-#include "ExecutableInfo.h"
-
-namespace Coverage {
-
- /*! @class CoverageReaderSkyeye
- *
- * This class implements the functionality which reads a coverage map
- * file produced by Skyeye. Since the SPARC has 32-bit instructions,
- * Skyeye produces a file with an integer for each 32-bit word. The
- * integer will have the least significant bit set if the address
- * was executed.
-@verbatim
-TBD
-@endverbatim
- */
- class CoverageReaderSkyeye : public CoverageReaderBase {
-
- public:
-
- /* Inherit documentation from base class. */
- CoverageReaderSkyeye();
-
- /* Inherit documentation from base class. */
- virtual ~CoverageReaderSkyeye();
-
- /* Inherit documentation from base class. */
- void processFile(
- const char* const file,
- ExecutableInfo* const executableInformation
- );
- };
-
-}
-#endif