StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
staplegl::util Namespace Reference

Functions

static auto read_file (std::string_view path) -> std::string
 Read a file into a string.
 
static auto get_file_name (std::string_view path) -> std::string
 Get the filename without the extension.
 

Function Documentation

◆ get_file_name()

static auto staplegl::util::get_file_name ( std::string_view  path) -> std::string
static

Get the filename without the extension.

Parameters
pathPath to the file, relative to the current working directory.
Returns
std::string, the name of the file.

Definition at line 81 of file utility.hpp.

◆ read_file()

static auto staplegl::util::read_file ( std::string_view  path) -> std::string
static

Read a file into a string.

Warning
If the file is not found, the function returns an empty string.
Parameters
paththe file path, relative to the current working directory.
Returns
std::string the contents of the file.

Definition at line 58 of file utility.hpp.