FreeRDP
sdl_resource_file.hpp
1 
18 #pragma once
19 
20 #include <string>
21 #include <vector>
22 
24 {
25  public:
26  SDLResourceFile(const std::string& type, const std::string& id,
27  const std::vector<unsigned char>& data);
28  virtual ~SDLResourceFile();
29 
30  SDLResourceFile(const SDLResourceFile& other) = delete;
31  SDLResourceFile(const SDLResourceFile&& other) = delete;
32  SDLResourceFile& operator=(const SDLResourceFile& other) = delete;
33  SDLResourceFile& operator=(SDLResourceFile&& other) = delete;
34 };
SDLResourceFile(const std::string &type, const std::string &id, const std::vector< unsigned char > &data)