diff options
Diffstat (limited to 'client/csv_import.h')
-rw-r--r-- | client/csv_import.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/csv_import.h b/client/csv_import.h new file mode 100644 index 0000000..6998417 --- /dev/null +++ b/client/csv_import.h @@ -0,0 +1,12 @@ +#include <QString> +#pragma once + + +class CSV_Import +{ +public: + CSV_Import(); + + virtual QString csvToSql(QString input); +}; + |