code style, documentation

This commit is contained in:
john30
2018-05-10 13:01:21 +02:00
parent 90baf8c295
commit 1eb3518145
5 changed files with 19 additions and 14 deletions
+2 -1
View File
@@ -722,7 +722,7 @@ class LoadableDataFieldSet : public DataFieldSet, public MappedFileReader {
/**
* Constructs a new instance.
* @param name the field name.
* @param fields the @a vector of @a SingleDataField instances part of this set.
* @param templates the @a DataFieldTemplates instance to use.
*/
LoadableDataFieldSet(const string& name, DataFieldTemplates* templates)
: DataFieldSet(name, vector<const SingleDataField*>()), MappedFileReader(false), m_templates(templates) {
@@ -736,6 +736,7 @@ class LoadableDataFieldSet : public DataFieldSet, public MappedFileReader {
vector< map<string, string> >* subRows, string* errorDescription, bool replace) override;
private:
/** the @a DataFieldTemplates instance to use. */
DataFieldTemplates* m_templates;
};