From 55923826d2e0b56113d998e852cbe945c6bd50c8 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Mon, 13 Feb 2023 11:20:16 +0100 Subject: [PATCH] Removed comment header, changed sdl2 includes --- src/Application.hpp | 10 +--------- src/Image.hpp | 10 +--------- src/SDLImageWrapper.hpp | 8 -------- src/SDLWrapper.hpp | 8 -------- src/Window.hpp | 10 +--------- 5 files changed, 3 insertions(+), 43 deletions(-) diff --git a/src/Application.hpp b/src/Application.hpp index ad510ba..de04b1e 100644 --- a/src/Application.hpp +++ b/src/Application.hpp @@ -1,15 +1,7 @@ -// -// Application.hpp -// libscgui -// -// Created by Bob Polis at 2020-10-23 -// Copyright (c) 2020 SwiftCoder. All rights reserved. -// - #ifndef _Application_H_ #define _Application_H_ -#include +#include "SDL.h" #include #include #include diff --git a/src/Image.hpp b/src/Image.hpp index 43204f9..cdc38d1 100644 --- a/src/Image.hpp +++ b/src/Image.hpp @@ -1,17 +1,9 @@ -// -// Image.hpp -// libscgui -// -// Created by Bob Polis at 2020-10-23 -// Copyright (c) 2020 SwiftCoder. All rights reserved. -// - #ifndef _Image_H_ #define _Image_H_ #include #include -#include +#include "SDL.h" namespace sc { namespace gui { diff --git a/src/SDLImageWrapper.hpp b/src/SDLImageWrapper.hpp index b03079d..64f5df8 100644 --- a/src/SDLImageWrapper.hpp +++ b/src/SDLImageWrapper.hpp @@ -1,11 +1,3 @@ -// -// SDLImageWrapper.hpp -// gui -// -// Created by Bob Polis at 2020-10-14 -// Copyright (c) 2020 SwiftCoder. All rights reserved. -// - #ifndef __SDLIMAGEWRAPPER_H_ #define __SDLIMAGEWRAPPER_H_ diff --git a/src/SDLWrapper.hpp b/src/SDLWrapper.hpp index 717b10d..705d6ce 100644 --- a/src/SDLWrapper.hpp +++ b/src/SDLWrapper.hpp @@ -1,11 +1,3 @@ -// -// SDLWrapper.hpp -// gui -// -// Created by Bob Polis at 2020-10-14 -// Copyright (c) 2020 SwiftCoder. All rights reserved. -// - #ifndef __SDLWRAPPER_H_ #define __SDLWRAPPER_H_ diff --git a/src/Window.hpp b/src/Window.hpp index 8393eb5..b1ac93e 100644 --- a/src/Window.hpp +++ b/src/Window.hpp @@ -1,15 +1,7 @@ -// -// Window.hpp -// gui -// -// Created by Bob Polis at 2020-10-14 -// Copyright (c) 2020 SwiftCoder. All rights reserved. -// - #ifndef __WINDOW_H_ #define __WINDOW_H_ -#include +#include "SDL.h" #include #include #include