summaryrefslogtreecommitdiff
path: root/project2/common/aggregate.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/common/aggregate.h')
-rw-r--r--project2/common/aggregate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/common/aggregate.h b/project2/common/aggregate.h
index 0641c6e..7f33b6b 100644
--- a/project2/common/aggregate.h
+++ b/project2/common/aggregate.h
@@ -10,9 +10,9 @@ class Aggregate : public SourceObject {
Aggregate(ScriptNodePtr);
virtual void reset() const = 0;
- void pushValue() const;
+ void pushValue(ExecContext * ec) const;
protected:
- virtual void pushValue(const VariableType &) const = 0;
+ virtual void pushValue(const VariableType &, ExecContext *) const = 0;
private:
Variable value;
};