From df4bda7a3ec73e84ce5955163d0233db5b0541b6 Mon Sep 17 00:00:00 2001 From: theskywinds Date: Wed, 11 Jun 2025 11:06:23 +0200 Subject: [PATCH] Initial commit of XmlHandling. --- CMakeLists.txt | 4 +++- libs/XmlHandling.h | 8 ++++++++ src/XmlHandling.cpp | 7 +++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 libs/XmlHandling.h create mode 100644 src/XmlHandling.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 1987ec6..87b31bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,9 @@ set(CMAKE_CXX_STANDARD 20) add_executable(${CMAKE_PROJECT_NAME} src/main.cpp - src/AtmAdmin.cpp) + src/AtmAdmin.cpp + src/XmlHandling.cpp + libs/XmlHandling.h) find_package(pugixml CONFIG REQUIRED) target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE libs) diff --git a/libs/XmlHandling.h b/libs/XmlHandling.h new file mode 100644 index 0000000..f4a893d --- /dev/null +++ b/libs/XmlHandling.h @@ -0,0 +1,8 @@ +// +// Created by theskywinds on 11-06-25. +// + +#ifndef XMLHANDLING_H +#define XMLHANDLING_H + +#endif //XMLHANDLING_H diff --git a/src/XmlHandling.cpp b/src/XmlHandling.cpp new file mode 100644 index 0000000..b846b15 --- /dev/null +++ b/src/XmlHandling.cpp @@ -0,0 +1,7 @@ +// +// Created by theskywinds on 11-06-25. +// + +#include "../libs/XmlHandling.h" + +