renamed isSet to isWrite
This commit is contained in:
+3
-3
@@ -139,14 +139,14 @@ public:
|
||||
* @param end the iterator pointing to the end of the definition parts.
|
||||
* @param templates the @a DataFieldTemplates to be referenced by name, or NULL.
|
||||
* @param returnField the variable in which to store the created instance.
|
||||
* @param isSetMessage whether the field is part of a set message (default false).
|
||||
* @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).
|
||||
* @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 isSetMessage=false, const unsigned char dstAddress=SYN);
|
||||
const bool isWriteMessage=false, const unsigned char dstAddress=SYN);
|
||||
|
||||
/**
|
||||
* @brief Returns the length of this field (or contained fields) in bytes.
|
||||
@@ -235,7 +235,7 @@ protected:
|
||||
|
||||
|
||||
/**
|
||||
* @brief A single DataField.
|
||||
* @brief A single @a DataField holding a value.
|
||||
*/
|
||||
class SingleDataField : public DataField
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user