GNU / Linux、C ++、SDL1.3を使用しています。「Window」クラスのコードを記述しようとしています。
#ifndef WINDOW_H
#define WINDOW_H
#include "SDL/SDL.h"
#include "SDL/SDL_video.h"
#include "../other/Logger.h"
using namespace std;
class Window {
public:
Window(int width, int height, string title);
~Window();
private:
static const string TAG;
SDL_Window* window;
int width;
int height;
};
#endif /* WINDOW_H */
そして、コンパイルしようとすると、次のエラーが発生します。
In file included from Window.cpp:1:0:
Window.h:15:3: error: ‘SDL_Window’ does not name a type.