Skip to content

v0.2.47..v0.2.48 changeset DataConverter.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/io/DataConverter.h b/hoot-core/src/main/cpp/hoot/core/io/DataConverter.h
index b650081..d51b578 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/DataConverter.h
+++ b/hoot-core/src/main/cpp/hoot/core/io/DataConverter.h
@@ -95,8 +95,22 @@ public:
 
   virtual void setConfiguration(const Settings& conf);
 
+  /**
+   * Converts multiple datasets from format to a single output format
+   *
+   * @param inputs the inputs to convert
+   * @param output the converted output path
+   */
   void convert(const QStringList& inputs, const QString& output);
 
+  /**
+   * Converts a dataset from format to another output format
+   *
+   * @param input the input to convert
+   * @param output the converted output path
+   */
+  void convert(const QString& input, const QString& output);
+
   void setTranslation(const QString& translation) { _translation = translation; }
   void setShapeFileColumns(const QStringList& columns) { _shapeFileColumns = columns; }
   void setOgrFeatureReadLimit(const int limit) { _ogrFeatureReadLimit = limit; }
Clone this wiki locally