##// END OF EJS Templates
Merge branch 'feature/CatalogueGuiPart5' into develop
Merge branch 'feature/CatalogueGuiPart5' into develop

File last commit:

r1286:073d4af7c849
r1349:aa6b3e9d2907 merge
Show More
CatalogueActionManager.h
19 lines | 465 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
#ifndef SCIQLOP_CATALOGUEACTIONMANAGER_H
#define SCIQLOP_CATALOGUEACTIONMANAGER_H
#include <Common/spimpl.h>
class CatalogueExplorer;
class CatalogueActionManager {
public:
CatalogueActionManager(CatalogueExplorer *catalogueExplorer);
void installSelectionZoneActions();
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H