summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ExecutableInfo.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tester/covoar/ExecutableInfo.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/tester/covoar/ExecutableInfo.h b/tester/covoar/ExecutableInfo.h
index 851a59d..0adebcb 100644
--- a/tester/covoar/ExecutableInfo.h
+++ b/tester/covoar/ExecutableInfo.h
@@ -18,9 +18,12 @@
#include "AddressToLineMapper.h"
#include "CoverageMapBase.h"
#include "SymbolTable.h"
+#include "DesiredSymbols.h"
namespace Coverage {
+class DesiredSymbols;
+
/*! @class ExecutableInfo
*
* This class holds a collection of information for an executable
@@ -41,11 +44,13 @@ namespace Coverage {
* @param[in] theExecutableName specifies the name of the executable
* @param[in] theLibraryName specifies the name of the executable
* @param[in] verbose specifies whether to be verbose with output
+ * @param[in] symbolsToAnalyze the symbols to be analyzed
*/
ExecutableInfo(
const char* const theExecutableName,
- const std::string& theLibraryName = "",
- bool verbose = false
+ const std::string& theLibraryName,
+ bool verbose,
+ DesiredSymbols& symbolsToAnalyze
);
/*!
@@ -198,6 +203,11 @@ namespace Coverage {
*/
SymbolTable theSymbolTable;
+ /*!
+ * This member variable contains the symbols to be analyzed.
+ */
+ DesiredSymbols& symbolsToAnalyze_m;
+
};
}
#endif