I have this line of code
//std::unique_ptr<SDL_Window> _window_; // this is somewhere else...
_window_ = std::make_unique<SDL_Window>(SDL_CreateWindow("SDL Window", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, _WIDTH_, _HEIGHT_, SDL_WINDOW_SHOWN));
it produces the following compiler error
In file included from /usr/include/c++/6/memory:81:0,
from /home/user/prj/src/main.cpp:4:
/usr/include/c++/6/bits/unique_ptr.h: In instantiation of ‘typename
std::_MakeUniq<_Tp>::__single_object std::make_unique(_Args&& ...) [with _Tp = SDL_Window; _Args = {SDL_Window*}; typename
std::_MakeUniq<_Tp>::__single_object = std::unique_ptr<SDL_Window>]’:
/home/user/prj/src/main.cpp:36:170: required from here
/usr/include/c++/6/bits/unique_ptr.h:791:30: error: invalid use of incomplete type ‘struct SDL_Window’
{ return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
why? (It works fine without smart pointers, so my guess is I didn't understand the syntax and this is trivial to fix. Will add source and CMakeLists.txt
below.)
CMakeLists.txt
cmake_minimum_required(VERSION 3.7)
project(prj)
find_package(SDL2 REQUIRED)
include_directories(prj ${SDL2_INCLUDE_DIRS})
add_executable(prj main.cpp)
target_link_libraries(prj ${SDL2_LIBRARIES})
main.cpp
#include "SDL.h"
#include <memory>
#include <iostream>
#include <fstream>
#include <cstdint>
class Window
{
public:
Window()
: _window_{nullptr}
, _surface_{nullptr}
{
if(SDL_Init(SDL_INIT_VIDEO) < 0)
{
std::cerr << SDL_GetError() << std::endl;
}
else
{
_window_ = std::make_unique<SDL_Window>(SDL_CreateWindow("SDL Window", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, _WIDTH_, _HEIGHT_, SDL_WINDOW_SHOWN));
if(_window_ == nullptr)
{
std::cerr << SDL_GetError() << std::endl;
}
else
{
_surface_ = std::make_unique<SDL_Surface>(SDL_GetWindowSurface(_window_.get()));
SDL_FillRect(_surface_.get(), nullptr, SDL_MapRGB(_surface_->format, 0xFF, 0xFF, 0xFF));
SDL_UpdateWindowSurface(_window_.get());
SDL_Delay(1000);
}
}
}
~Window()
{
SDL_DestroyWindow(_window_.get());
SDL_Quit();
}
private:
const int32_t _WIDTH_{600};
const int32_t _HEIGHT_{400};
std::unique_ptr<SDL_Window> _window_;
std::unique_ptr<SDL_Surface> _surface_;
};
int main(int argc, char* argv[])
{
Window window;
return 0;
}