picceler
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#pragma once
2
3#include <filesystem>
4#include <string>
5#include <cstdlib>
6
7#ifndef _WIN32
8#include <unistd.h>
9#include <sys/types.h>
10#include <pwd.h>
11#endif
12
13namespace picceler::utils {
14
31std::string expandTilde(const std::string& inputPath);
32
33} // namespace picceler::utils
Definition utils.h:13
std::string expandTilde(const std::string &inputPath)
Definition utils.cpp:5