csvzall 0.4.0
CSV command-line tool and emerging C++ library
Loading...
Searching...
No Matches
support.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "../view.hpp"
4
5#include <csv.hpp>
6
7#include <cstdint>
8#include <string>
9
11
12inline constexpr std::uint64_t kDefaultRowsPerPage = 500;
13inline constexpr std::uint64_t kMaxRowsPerPage = 5000;
14inline constexpr std::uint64_t kBytesPerMiB = 1024 * 1024;
15
16csv::CSVFormat MakeViewFormat(const RunOptions& options);
17std::string GenerateSessionToken();
18
19} // namespace csvzall::pipeline::commands::view_internal
constexpr std::uint64_t kDefaultRowsPerPage
Definition support.hpp:12
std::string GenerateSessionToken()
Definition support.cpp:17
constexpr std::uint64_t kMaxRowsPerPage
Definition support.hpp:13
constexpr std::uint64_t kBytesPerMiB
Definition support.hpp:14
csv::CSVFormat MakeViewFormat(const RunOptions &options)
Definition support.cpp:6
Definition pipeline_types.hpp:16