Removed comment headers, fixed sdl2 includes

This commit is contained in:
Bob Polis 2023-02-13 11:23:16 +01:00
parent 55923826d2
commit e5a2cb2604
6 changed files with 4 additions and 52 deletions

View File

@ -1,11 +1,3 @@
//
// Application.cpp
// libscgui
//
// Created by Bob Polis at 2020-10-23
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include "Application.hpp"
#include "Window.hpp"
#include <algorithm>

View File

@ -1,13 +1,5 @@
//
// Image.cpp
// libscgui
//
// Created by Bob Polis at 2020-10-23
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include "Image.hpp"
#include <SDL2/SDL_image.h>
#include "SDL_image.h"
#include <stdexcept>
using namespace sc::gui;

View File

@ -1,11 +1,3 @@
//
// ImageLock.cpp
// libscgui
//
// Created by Bob Polis at 2020-10-24
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include "ImageLock.hpp"
#include "Image.hpp"

View File

@ -1,12 +1,4 @@
//
// SDLImageWrapper.cpp
// gui
//
// Created by Bob Polis at 2020-10-14
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include <SDL2/SDL_image.h>
#include "SDL_image.h"
#include <stdexcept>
#include "SDLImageWrapper.hpp"

View File

@ -1,12 +1,4 @@
//
// SDLWrapper.cpp
// gui
//
// Created by Bob Polis at 2020-10-14
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include <SDL2/SDL.h>
#include "SDL.h"
#include "SDLWrapper.hpp"
using namespace sc::gui;

View File

@ -1,12 +1,4 @@
//
// Window.cpp
// gui
//
// Created by Bob Polis at 2020-10-14
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include <SDL2/SDL_image.h>
#include "SDL_image.h"
#include <cmath>
#include <algorithm>
#include "Window.hpp"