Skip to content
Snippets Groups Projects

Remove unused indirection for creating new LinkManagers

Merged Gerhard Raven requested to merge remove-unused-level-of-indirection-in-linkmgr into master
3 files
+ 3
16
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -87,10 +87,6 @@ public:
LinkManager& operator=( LinkManager const& ) = delete;
/// Standard Destructor
~LinkManager();
/// Static instantiation
static LinkManager* newInstance();
/// Assign new instantiator
static void setInstantiator( LinkManager* ( *newInstance )() );
/// Retrieve number of link present
long size() const { return m_linkVector.size(); }
bool empty() const { return m_linkVector.empty(); }
Loading