blob: a23069d2364ed1c8c41aad934ae1d4a456709354 [file] [log] [blame]
Tomáš Pecka491f4f22020-11-05 15:44:00 +01001/*
2 * Copyright (C) 2020 CESNET, https://photonics.cesnet.cz/
3 *
4 * Written by Tomáš Pecka <tomas.pecka@fit.cvut.cz>
5 *
6*/
7
8#pragma once
9
10#include <filesystem>
11#include <string>
12#include <vector>
13
14namespace velia::utils {
15
16std::string readFileString(const std::filesystem::path& path);
17std::vector<uint32_t> readFileWords(const std::filesystem::path& path, int valuesCount);
18}