nsbaci 1.0
Loading...
Searching...
No Matches
fileTypes.h
Go to the documentation of this file.
1
12
13#ifndef NSBACI_TYPES_FILETYPES_H
14#define NSBACI_TYPES_FILETYPES_H
15
16#include <filesystem>
17#include <string>
18
23namespace nsbaci::types {
24
25namespace fs = std::filesystem;
26
30using Text = std::string;
31
35using File = fs::path;
36
37} // namespace nsbaci::types
38
39#endif // NSBACI_TYPES_FILETYPES_H
Type definitions namespace for nsbaci (runtime-specific).
fs::path File
Alias for file system paths.
Definition fileTypes.h:35
std::string Text
Alias for text content (file contents, source code, etc.).
Definition fileTypes.h:30