##// END OF EJS Templates
Adds the ability to set cache tolerance for tests
Adds the ability to set cache tolerance for tests

File last commit:

r1163:800f227572ac
r1191:c4f25cb21c59
Show More
CatalogueActionManager.h
17 lines | 401 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
Zone actions to create a new event
r1163 #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