From 07bb41351db43d465a6789cf1b71aced9aa9433b Mon Sep 17 00:00:00 2001 From: aka_katto Date: Sat, 11 Apr 2020 19:14:30 -0700 Subject: [PATCH] first commit for rework, included remade Frame class --- cpp_rework/frame/Frame.cpp | 26 +++++++++++++++++++++++++ cpp_rework/frame/Frame.h | 39 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 cpp_rework/frame/Frame.cpp create mode 100644 cpp_rework/frame/Frame.h diff --git a/cpp_rework/frame/Frame.cpp b/cpp_rework/frame/Frame.cpp new file mode 100644 index 0000000..cde8409 --- /dev/null +++ b/cpp_rework/frame/Frame.cpp @@ -0,0 +1,26 @@ + +/* + This file is part of the Dandere2x project. + + Dandere2x is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Dandere2x is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Foobar. If not, see . +*/ + +/* ========= Copyright aka_katto 2018, All rights reserved. ============ +Original Author: aka_katto +Date: 4/11/20 +Purpose: + +===============================================================*/ + +#include "Frame.h" diff --git a/cpp_rework/frame/Frame.h b/cpp_rework/frame/Frame.h new file mode 100644 index 0000000..19352d6 --- /dev/null +++ b/cpp_rework/frame/Frame.h @@ -0,0 +1,39 @@ + +/* + This file is part of the Dandere2x project. + + Dandere2x is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Dandere2x is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Foobar. If not, see . +*/ + +/* ========= Copyright aka_katto 2018, All rights reserved. ============ +Original Author: aka_katto +Date: 4/11/20 +Purpose: This class is to facilitate all the functions and uses dandere2x + will need to use when handling images. This wrapper + wraps around stb_image, which is really portable (but not friendly + for dandere2x computations), and is inspired by Princeton's + image API library: + https://introcs.cs.princeton.edu/java/stdlib/javadoc/Picture.html + + ===================================================================== */ + +#ifndef CPP_REWORK_FRAME_H +#define CPP_REWORK_FRAME_H + +class Frame { + +}; + + +#endif //CPP_REWORK_FRAME_H