mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
32 lines
668 B
C++
32 lines
668 B
C++
#pragma once
|
|
#include "include.h"
|
|
#include <cstdio>
|
|
#include <string>
|
|
#include <memory>
|
|
#include "__Plugin.h"
|
|
#include "begin_code.h"
|
|
class RWOP
|
|
{
|
|
public:
|
|
RWOP(FILE* fp,bool autoclose);
|
|
RWOP(const std::string& filename,const std::string& openmode);
|
|
RWOP(const void* mem,int size);
|
|
RWOP(void* mem,int size);
|
|
RWOP()=default;
|
|
~RWOP()=default;
|
|
|
|
void release();
|
|
private:
|
|
std::shared_ptr<SDL_RWops> _op;
|
|
SDL_RWops* _get() const;
|
|
void _clear();
|
|
void _set(SDL_RWops*);
|
|
friend class Surface;
|
|
friend class Renderer;
|
|
friend class Sound;
|
|
friend class Music;
|
|
|
|
friend class _internal::Plugin;
|
|
};
|
|
#include "end_code.h"
|