diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2022-10-29 14:19:51 +0200 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2022-10-29 14:19:51 +0200 |
commit | 6d9df6fe97502a852b68c8c8e6781d7208170cae (patch) | |
tree | 2485788cf73e7ccaaa02288285cd2f536d65f600 /client/csv_import.h | |
parent | 28af8ed412224bd8969db98521b67e0f4027ddf7 (diff) |
test version
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); +}; + |