##// END OF EJS Templates
Added basic cache tests for new VC...
Added basic cache tests for new VC Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r9:b3317a5111ec
r11:d2d15e1be6f5
Show More
VariableController2.h
39 lines | 1.2 KiB | text/x-c | CLexer
/ include / Variable / VariableController2.h
First init from SciQLop Core module...
r0 #include <memory>
#include <vector>
#include <QHash>
Basic serial variable creation and update...
r2 #include <QObject>
#include <QMutexLocker>
#include <QUuid>
#include <QItemSelectionModel>
#include <Common/spimpl.h>
First init from SciQLop Core module...
r0 #include <Variable/Variable.h>
#include <Variable/VariableSynchronizationGroup.h>
#include <Variable/VariableModel.h>
#include <Data/IDataProvider.h>
#include "Data/DateTimeRange.h"
Basic serial variable creation and update...
r2 class VariableController2: public QObject
First init from SciQLop Core module...
r0 {
Basic serial variable creation and update...
r2 class VariableController2Private;
Q_OBJECT
First init from SciQLop Core module...
r0 spimpl::unique_impl_ptr<VariableController2Private> impl;
public:
explicit VariableController2();
std::shared_ptr<Variable> createVariable(const QString &name, const QVariantHash &metadata,
std::shared_ptr<IDataProvider> provider, const DateTimeRange &range);
Basic serial variable creation and update...
r2
void deleteVariable(std::shared_ptr<Variable> variable);
void changeRange(std::shared_ptr<Variable> variable, DateTimeRange r);
void asyncChangeRange(std::shared_ptr<Variable> variable, DateTimeRange r);
Many fixes plus implemented var synchronization...
r9 const std::set<std::shared_ptr<Variable>> variables();
Basic serial variable creation and update...
r2
Added more features in DateTimeRange to prepare variable synchronization...
r8 void synchronize(std::shared_ptr<Variable> var, std::shared_ptr<Variable> with);
Basic serial variable creation and update...
r2 signals:
void variableAdded(std::shared_ptr<Variable>);
void variableDeleted(std::shared_ptr<Variable>);
First init from SciQLop Core module...
r0
};