FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
sdl_resource_file.cpp
1
18#include "sdl_resource_file.hpp"
19#include "sdl_resource_manager.hpp"
20
21SDLResourceFile::SDLResourceFile(const std::string& type, const std::string& id,
22 const std::vector<unsigned char>& data)
23{
24 SDLResourceManager::insert(type, id, data);
25}
26
27SDLResourceFile::~SDLResourceFile() = default;
SDLResourceFile(const std::string &type, const std::string &id, const std::vector< unsigned char > &data)