##// END OF EJS Templates
Wait for the end of an acquisition to validate an operation (1)...
Wait for the end of an acquisition to validate an operation (1) Creating a synchronous waiting helper for sending a signal

File last commit:

r1195:800f227572ac
r1246:2785fa3e9772
Show More
CatalogueActionManager.h
17 lines | 401 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
#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