summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsText.h
diff options
context:
space:
mode:
Diffstat (limited to 'tester/covoar/ReportsText.h')
-rw-r--r--tester/covoar/ReportsText.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/tester/covoar/ReportsText.h b/tester/covoar/ReportsText.h
index 9ae87d4..cf8a813 100644
--- a/tester/covoar/ReportsText.h
+++ b/tester/covoar/ReportsText.h
@@ -21,7 +21,7 @@ namespace Coverage {
class ReportsText: public ReportsBase {
public:
- ReportsText( time_t timestamp );
+ ReportsText( time_t timestamp, std::string symbolSetName );
virtual ~ReportsText();
/*!
@@ -83,7 +83,8 @@ class ReportsText: public ReportsBase {
virtual bool PutBranchEntry(
FILE* report,
unsigned int number,
- Coverage::DesiredSymbols::symbolSet_t::iterator symbolPtr,
+ const std::string& symbolName,
+ const SymbolInformation& symbolInfo,
Coverage::CoverageRanges::ranges_t::iterator rangePtr
);
@@ -99,7 +100,8 @@ class ReportsText: public ReportsBase {
virtual bool PutCoverageLine(
FILE* report,
unsigned int number,
- Coverage::DesiredSymbols::symbolSet_t::iterator ditr,
+ const std::string& symbolName,
+ const SymbolInformation& symbolInfo,
Coverage::CoverageRanges::ranges_t::iterator ritr
);
@@ -107,7 +109,7 @@ class ReportsText: public ReportsBase {
virtual bool PutSizeLine(
FILE* report,
unsigned int number,
- Coverage::DesiredSymbols::symbolSet_t::iterator symbol,
+ const std::string& symbolName,
Coverage::CoverageRanges::ranges_t::iterator range
);
@@ -115,7 +117,8 @@ class ReportsText: public ReportsBase {
virtual bool PutSymbolSummaryLine(
FILE* report,
unsigned int number,
- Coverage::DesiredSymbols::symbolSet_t::iterator symbol
+ const std::string& symbolName,
+ const SymbolInformation& symbolInfo
);
};