From b5c51f0f7a8dda77d5d6b2de09522d30515d2f87 Mon Sep 17 00:00:00 2001 From: rhinemann Date: Fri, 27 Dec 2024 17:32:59 +0200 Subject: [PATCH] Initial commit. --- .gitignore | 2 ++ CMakeLists.txt | 10 ++++++++++ main.cpp | 6 ++++++ sort.cpp | 5 +++++ sort.h | 8 ++++++++ stringProcessor.cpp | 5 +++++ stringProcessor.h | 8 ++++++++ 7 files changed, 44 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 main.cpp create mode 100644 sort.cpp create mode 100644 sort.h create mode 100644 stringProcessor.cpp create mode 100644 stringProcessor.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..602b07f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +cmake-build-debug/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f2ace4c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.30) +project(code) + +set(CMAKE_CXX_STANDARD 23) + +add_executable(code main.cpp + sort.cpp + sort.h + stringProcessor.cpp + stringProcessor.h) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..f253cbe --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +} \ No newline at end of file diff --git a/sort.cpp b/sort.cpp new file mode 100644 index 0000000..4229a4d --- /dev/null +++ b/sort.cpp @@ -0,0 +1,5 @@ +// +// Created by rhinemann on 27.12.24. +// + +#include "sort.h" diff --git a/sort.h b/sort.h new file mode 100644 index 0000000..934883c --- /dev/null +++ b/sort.h @@ -0,0 +1,8 @@ +// +// Created by rhinemann on 27.12.24. +// + +#ifndef SORT_H +#define SORT_H + +#endif //SORT_H diff --git a/stringProcessor.cpp b/stringProcessor.cpp new file mode 100644 index 0000000..1a51809 --- /dev/null +++ b/stringProcessor.cpp @@ -0,0 +1,5 @@ +// +// Created by rhinemann on 27.12.24. +// + +#include "stringProcessor.h" diff --git a/stringProcessor.h b/stringProcessor.h new file mode 100644 index 0000000..08d3be8 --- /dev/null +++ b/stringProcessor.h @@ -0,0 +1,8 @@ +// +// Created by rhinemann on 27.12.24. +// + +#ifndef STRINGPROCESSOR_H +#define STRINGPROCESSOR_H + +#endif //STRINGPROCESSOR_H