Files
2025-06-13 16:25:14 +02:00

20 lines
328 B
C++

#pragma once
#include <QObject>
#include <QVariant>
#include "qtmodelstoolkit/singleroleaggregator.h"
namespace qtmt {
class SumAggregator : public SingleRoleAggregator {
public:
explicit SumAggregator(QObject *parent = nullptr);
protected slots:
QVariant calculateAggregation() override;
};
} // namespace qtmt