mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 13:56:48 +08:00
22 lines
444 B
C++
22 lines
444 B
C++
/**
|
|
* @author Alexis Maiquez Murcia <almamu@almamu.com>
|
|
*/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include "WallpaperEngine/Assets/CContainer.h"
|
|
|
|
namespace WallpaperEngine::FileSystem
|
|
{
|
|
/**
|
|
* Loads a full file into an std::string
|
|
*
|
|
* @param file
|
|
* @return
|
|
*/
|
|
std::string loadFullFile (const std::string& file, const WallpaperEngine::Assets::CContainer& containers);
|
|
}
|