From a9d27ef2ba5890b860ed911ca66ce5513f68fbc8 Mon Sep 17 00:00:00 2001 From: john30 Date: Sun, 18 Oct 2015 15:18:57 +0200 Subject: [PATCH] documentation --- src/lib/ebus/message.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/ebus/message.h b/src/lib/ebus/message.h index ac356846..9c2b391b 100644 --- a/src/lib/ebus/message.h +++ b/src/lib/ebus/message.h @@ -458,6 +458,7 @@ public: /** * Combine this condition with another instance using a logical and. * @param other the @a Condition to combine with. + * @return the @a CombinedCondition instance. */ virtual CombinedCondition* combineAnd(Condition* other) = 0; @@ -621,7 +622,8 @@ public: * Read the @a Condition instance(s) from the types field. * @param types the field from which to read the @a Condition instance(s). * @param filename the name of the file being read. - * @param returnValue the variable in which to store the read instance. + * @param condition the variable in which to store the result. + * @return @a RESULT_OK on success, or an error code. */ result_t readConditions(string& types, const string& filename, Condition*& condition);