fw: delete deprecated Strategy::getName in favor of getInstanceName
This commit also renames strategy_choice::Entry::getStrategyName
to getStrategyInstanceName.
refs #3868
Change-Id: I40301e744fc236918d6be1c1262eba952198e22f
diff --git a/daemon/table/strategy-choice-entry.hpp b/daemon/table/strategy-choice-entry.hpp
index 5d1497c..c6a1326 100644
--- a/daemon/table/strategy-choice-entry.hpp
+++ b/daemon/table/strategy-choice-entry.hpp
@@ -49,15 +49,21 @@
~Entry();
+ /** \return name prefix on which this strategy choice is applied
+ */
const Name&
getPrefix() const
{
return m_prefix;
}
+ /** \return strategy instance name
+ */
const Name&
- getStrategyName() const;
+ getStrategyInstanceName() const;
+ /** \return strategy instance
+ */
fw::Strategy&
getStrategy() const
{
@@ -78,7 +84,6 @@
fw::Strategy* m_strategyPtr;
name_tree::Entry* m_nameTreeEntry;
-
friend class name_tree::Entry;
};