##// END OF EJS Templates
Adds the ability to force an acquisition pending for an operation (2)...
Adds the ability to force an acquisition pending for an operation (2) Handles flag in the test

File last commit:

r1195:800f227572ac
r1250:a7d21961e1ef
Show More
CatalogueActionManager.h
17 lines | 401 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
Zone actions to create a new event
r1195 #ifndef SCIQLOP_CATALOGUEACTIONMANAGER_H
#define SCIQLOP_CATALOGUEACTIONMANAGER_H
#include <Common/spimpl.h>
class CatalogueActionManager {
public:
CatalogueActionManager();
void installSelectionZoneActions();
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H