Skip to content

v0.2.48..v0.2.49 changeset OsmApiDbSqlChangesetFileWriter.h

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/OsmApiDbSqlChangesetFileWriter.h b/hoot-core/src/main/cpp/hoot/core/io/OsmApiDbSqlChangesetFileWriter.h
index b8a483b..1bb24e1 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/OsmApiDbSqlChangesetFileWriter.h
+++ b/hoot-core/src/main/cpp/hoot/core/io/OsmApiDbSqlChangesetFileWriter.h
@@ -64,11 +64,19 @@ public:
    * Write a SQL changeset to the specified output path
    *
    * @param path SQL file output path
-   * @param changesetProvider changeset data
+   * @param changesetProvider changeset provider to stream the changes from
    */
   void write(const QString& path, ChangesetProviderPtr changesetProvider);
 
   /**
+   * Write a SQL changeset to the specified output path
+   *
+   * @param path SQL file output path
+   * @param changesetProviders changeset providers to stream the changes from
+   */
+  void write(const QString& path, const QList<ChangesetProviderPtr>& changesetProviders);
+
+  /**
    * Set the configuration settings
    *
    * @param conf Settings object containing updated value for changeset.max.size setting
@@ -118,6 +126,7 @@ private:
   double _changesetUserId;
 
   bool _includeDebugTags;
+  bool _includeCircularErrorTags;
 
   // id mappings for created elements
   QMap<ElementId, ElementId> _remappedIds;
Clone this wiki locally