From ea80e4d715f9d19ce1a1c0d89fb4337aefda6daa Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 27 Sep 2011 14:24:37 +0200 Subject: [PATCH] Document the rationale behind process::accounting. --- process.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/process.h b/process.h index 8a9e74c..c7525fd 100644 --- a/process.h +++ b/process.h @@ -120,7 +120,9 @@ private: mesg_accounting ctrl_recv; // ctrl message received accounting(): comp_amount(0.0) { } }; - accounting acc; + accounting acc; // use a structure so that it is + // automatically initialized a + // construction void add_comp_amount(double amount) { acc.comp_amount += amount; } void add_data_send_mesg(double amount) { -- 2.39.5