removed default argument values from DataFiel::create, documentation

This commit is contained in:
john30
2015-03-12 23:20:35 +01:00
parent b838f40a51
commit ce9f443dde
2 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -154,14 +154,15 @@ public:
* @param templates the @a DataFieldTemplates to be referenced by name, or NULL.
* @param returnField the variable in which to store the created instance.
* @param isWriteMessage whether the field is part of a write message (default false).
* @param dstAddress the destination bus address (default @a SYN for creating a template @a DataField).
* @param isTemplate true for creating a template @a DataField.
* @param isBroadcastOrMasterDestination true if the destination bus address is @a BRODCAST or a master address.
* @return @a RESULT_OK on success, or an error code.
* Note: the caller needs to free the created instance.
*/
static result_t create(vector<string>::iterator& it, const vector<string>::iterator end,
DataFieldTemplates* templates, DataField*& returnField,
const bool isWriteMessage=false,
const bool isTemplate=true, const bool isBroadcastOrMasterDestination=false);
const bool isWriteMessage,
const bool isTemplate, const bool isBroadcastOrMasterDestination);
/**
* Dump the @a string optionally embedded in @a TEXT_SEPARATOR to the output.