You could create a functor that has several overloaded operator()
implementations, each of which call the correct destroy function for the respective argument type.
struct sdl_deleter
{
void operator()(SDL_Window *p) const { SDL_DestroyWindow(p); }
void operator()(SDL_Renderer *p) const { SDL_DestroyRenderer(p); }
void operator()(SDL_Texture *p) const { SDL_DestroyTexture(p); }
};
Pass this as the deleter to a unique_ptr
, and you could write wrapper functions if you wanted to, to create the unique_ptr
s
unique_ptr<SDL_Window, sdl_deleter>
create_window(char const *title, int x, int y, int w, int h, Uint32 flags)
{
return unique_ptr<SDL_Window, sdl_deleter>(
SDL_CreateWindow(title, x, y, w, h, flags),
sdl_deleter());
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…