##// END OF EJS Templates
Creates enum that represents the value types that can be read in AMDA...
Creates enum that represents the value types that can be read in AMDA This enum is passed in parameter of the reading method to parse the result file according to it

File last commit:

r537:8c1ac858caa5
r563:a08e6992e146
Show More
VariableSynchronizationGroup.h
38 lines | 897 B | text/x-c | CLexer
/ core / include / Variable / VariableSynchronizationGroup.h
Add VariableSynchronizationGroup
r537 #ifndef SCIQLOP_VARIABLESYNCHRONIZATIONGROUP_H
#define SCIQLOP_VARIABLESYNCHRONIZATIONGROUP_H
#include "CoreGlobal.h"
#include <QLoggingCategory>
#include <QObject>
#include <QUuid>
#include <Data/SqpRange.h>
#include <set>
#include <QLoggingCategory>
#include <Common/spimpl.h>
Q_DECLARE_LOGGING_CATEGORY(LOG_VariableSynchronizationGroup)
class Variable;
/// This class aims to hande the cache strategy.
class SCIQLOP_CORE_EXPORT VariableSynchronizationGroup : public QObject {
Q_OBJECT
public:
explicit VariableSynchronizationGroup(QObject *parent = 0);
void addVariableId(QUuid vIdentifier);
void removeVariableId(QUuid vIdentifier);
const std::set<QUuid> &getIds() const noexcept;
private:
class VariableSynchronizationGroupPrivate;
spimpl::unique_impl_ptr<VariableSynchronizationGroupPrivate> impl;
};
#endif // SCIQLOP_VARIABLESYNCHRONIZATIONGROUP_H