summaryrefslogtreecommitdiff
path: root/covoar/CoverageWriterTSIM.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/CoverageWriterTSIM.h')
-rw-r--r--covoar/CoverageWriterTSIM.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/covoar/CoverageWriterTSIM.h b/covoar/CoverageWriterTSIM.h
deleted file mode 100644
index 927fd64..0000000
--- a/covoar/CoverageWriterTSIM.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*! @file CoverageWriterTSIM.h
- * @brief CoverageWriterTSIM Specification
- *
- * This file contains the specification of the CoverageWriterTSIM class.
- */
-
-#ifndef __COVERAGE_WRITER_TSIM_H__
-#define __COVERAGE_WRITER_TSIM_H__
-
-#include "CoverageMapBase.h"
-#include "CoverageWriterBase.h"
-
-namespace Coverage {
-
- /*! @class CoverageWriterTSIM
- *
- * This class writes a coverage map in TSIM format. The format is
- * documented in CoverageReaderTSIM.
- */
- class CoverageWriterTSIM : public CoverageWriterBase {
-
- public:
-
- /*!
- * This method constructs a CoverageWriterTSIM instance.
- */
- CoverageWriterTSIM();
-
- /*!
- * This method destructs a CoverageWriterTSIM instance.
- */
- virtual ~CoverageWriterTSIM();
-
- /* Inherit documentation from base class. */
- void writeFile(
- const char* const file,
- CoverageMapBase* coverage,
- uint32_t lowAddress,
- uint32_t highAddress
- );
- };
-
-}
-#endif