summaryrefslogtreecommitdiff
path: root/src/linkgraph/flowmapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/linkgraph/flowmapper.h')
-rw-r--r--src/linkgraph/flowmapper.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/linkgraph/flowmapper.h b/src/linkgraph/flowmapper.h
index 6dc84ffea..6f874e5b3 100644
--- a/src/linkgraph/flowmapper.h
+++ b/src/linkgraph/flowmapper.h
@@ -23,12 +23,25 @@
*/
class FlowMapper : public ComponentHandler {
public:
+
+ /**
+ * Create a flow mapper.
+ * @param scale Whether the flow mapper should scale all flows to monthly
+ * values. Only do that on the very last flow mapping.
+ */
+ FlowMapper(bool scale) : scale(scale) {}
virtual void Run(LinkGraphJob &job) const;
/**
* Virtual destructor has to be defined because of virtual Run().
*/
virtual ~FlowMapper() {}
+private:
+
+ /**
+ * Whether the flow mapper should scale all flows to monthly values.
+ */
+ const bool scale;
};
#endif /* FLOWMAPPER_H_ */