summaryrefslogtreecommitdiffstats
path: root/tester/covoar/GcovFunctionData.h
diff options
context:
space:
mode:
Diffstat (limited to 'tester/covoar/GcovFunctionData.h')
-rw-r--r--tester/covoar/GcovFunctionData.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tester/covoar/GcovFunctionData.h b/tester/covoar/GcovFunctionData.h
index 812b45c..7d87b55 100644
--- a/tester/covoar/GcovFunctionData.h
+++ b/tester/covoar/GcovFunctionData.h
@@ -44,6 +44,8 @@ typedef std::list<gcov_arc_info>::iterator arcs_iterator_t;
typedef std::list<gcov_block_info> blocks_t;
typedef std::list<gcov_block_info>::iterator blocks_iterator_t;
+class DesiredSymbols;
+
/*! @class GcovFunctionData
*
* This is the specification of the GcovFunctionData class.
@@ -94,11 +96,13 @@ typedef std::list<gcov_block_info>::iterator blocks_iterator_t;
* unified coverage map.
*
* @param[in] functionName passes name of the the function
+ * @param[in] symbolsToAnalyze the symbols to be analyzed
*
* @return Returns TRUE if the method succeeded and FALSE if it failed.
*/
bool setFunctionName(
- const char* fcnName
+ const char* fcnName,
+ Coverage::DesiredSymbols& symbolsToAnalyze
);
/*!