remade text type switch as tabview

This commit is contained in:
2024-10-22 13:18:19 +03:00
parent 4bf7638f6a
commit 02e4465075
12 changed files with 157 additions and 228 deletions

View File

@@ -3,6 +3,12 @@
#include <string>
#include <vector>
#include <filesystem>
#include <iostream>
#include <string>
#include <vector>
#include "../net/net.h"
#include "../settings/settings.h"
enum class ColumnType {
goods_name,
@@ -18,7 +24,6 @@ struct Column { // Example:
unsigned int position; // "0" <-- 0 = "A", 1 = "B", etc.. column letter in
// table processor (i.e. excel or libreoffice)
} typedef Column;
enum class OutputFormat { csv, ods, xlsx, plaintext } typedef OutputFormat;
class OutputOptions {