summaryrefslogtreecommitdiff
path: root/covoar/CoverageMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/CoverageMap.h')
-rw-r--r--covoar/CoverageMap.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/covoar/CoverageMap.h b/covoar/CoverageMap.h
deleted file mode 100644
index 0f2f6d4..0000000
--- a/covoar/CoverageMap.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*! @file CoverageMap.h
- * @brief CoverageMap Specification
- *
- * This file contains the specification of the CoverageMap class.
- */
-
-#ifndef __COVERAGE_MAP_H__
-#define __COVERAGE_MAP_H__
-
-#include "CoverageMapBase.h"
-
-namespace Coverage {
-
- /*! @class CoverageMap
- *
- * This class implements a coverage map which supports a single
- * range of addresses from low to high.
- */
- class CoverageMap : public CoverageMapBase {
-
- public:
-
- /*!
- * This method constructs a CoverageMap instance.
- *
- * @param[in] low specifies the lowest address of the coverage map.
- * @param[in] high specifies the highest address of the coverage map.
- */
- CoverageMap(
- uint32_t low,
- uint32_t high
- );
-
- /* Inherit documentation from base class. */
- virtual ~CoverageMap();
-
- };
-
-}
-#endif