FreeRDP
sdl_resource_file.cpp
1 
18 #include "sdl_resource_file.hpp"
19 #include "sdl_resource_manager.hpp"
20 
21 SDLResourceFile::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 
27 SDLResourceFile::~SDLResourceFile() = default;
SDLResourceFile(const std::string &type, const std::string &id, const std::vector< unsigned char > &data)