FreeRDP
Loading...
Searching...
No Matches
sdl2_resource_manager.hpp
1
18#pragma once
19
20#include <string>
21#include <map>
22#include <vector>
23#include <SDL.h>
24
25#include <res/sdl_resource_manager.hpp>
26
28{
29 public:
30 SDL2ResourceManager() = delete;
31 SDL2ResourceManager(const SDL2ResourceManager& other) = delete;
32 SDL2ResourceManager(const SDL2ResourceManager&& other) = delete;
33 ~SDL2ResourceManager() = delete;
34 SDL2ResourceManager& operator=(const SDL2ResourceManager& other) = delete;
35 SDL2ResourceManager& operator=(SDL2ResourceManager&& other) = delete;
36
37 static SDL_RWops* get(const std::string& type, const std::string& id);
38};
static SDL_RWops * get(const std::string &type, const std::string &id)