Files
QtModelsToolkit/toolkit/include/qtmodelstoolkit/sumaggregator.h

20 lines
328 B
C++
Raw Permalink Normal View History

2025-06-10 13:39:28 +02:00
#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