##// END OF EJS Templates
Force range for each transformation among synchronized graphs, ignore missing X unit in data files since it's always time...
Force range for each transformation among synchronized graphs, ignore missing X unit in data files since it's always time Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1327:07b2554d7734
r1384:e344de146add
Show More
CatalogueActionManager.h
20 lines | 509 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();
void refreshCreateInCatalogueAction();
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H