1 #include "library/basetracksetfeature.h"
2 
3 #include "moc_basetracksetfeature.cpp"
4 
BaseTrackSetFeature(Library * pLibrary,UserSettingsPointer pConfig,const QString & rootViewName)5 BaseTrackSetFeature::BaseTrackSetFeature(
6         Library* pLibrary,
7         UserSettingsPointer pConfig,
8         const QString& rootViewName)
9         : LibraryFeature(pLibrary, pConfig),
10           m_rootViewName(rootViewName) {
11 }
12 
activate()13 void BaseTrackSetFeature::activate() {
14     emit switchToView(m_rootViewName);
15     emit disableSearch();
16     emit enableCoverArtDisplay(true);
17 }
18