-
Notifications
You must be signed in to change notification settings - Fork 74
v0.2.47..v0.2.48 changeset HootApiDbWriter.h
Garret Voltz edited this page Sep 27, 2019
·
1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/HootApiDbWriter.h b/hoot-core/src/main/cpp/hoot/core/io/HootApiDbWriter.h
index e1ee6f5..8abb570 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/HootApiDbWriter.h
+++ b/hoot-core/src/main/cpp/hoot/core/io/HootApiDbWriter.h
@@ -63,30 +63,21 @@ public:
virtual void setConfiguration(const Settings &conf) override;
void setCreateUser(bool createIfNotFound) { _createUserIfNotFound = createIfNotFound; }
-
void setOverwriteMap(bool overwriteMap) { _overwriteMap = overwriteMap; }
-
void setIncludeDebug(bool includeDebug) { _includeDebug = includeDebug; }
-
void setTextStatus(bool textStatus) { _textStatus = textStatus; }
-
void setIncludeCircularError(bool includeCircularError)
{ _includeCircularError = includeCircularError; }
-
/**
* If set to true (the default) then all IDs are remapped into new IDs. This is appropriate if
* any of the input IDs are non-positive.
*/
void setRemap(bool remap) { _remapIds = remap; }
-
void setUserEmail(const QString& email) { _userEmail = email; }
-
void setJobId(const QString& id) { _jobId = id; }
virtual void writePartial(const ConstNodePtr& n) override;
-
virtual void writePartial(const ConstWayPtr& w) override;
-
virtual void writePartial(const ConstRelationPtr& r) override;
/**