From c73cdc184be879fa48c3be170b6c78ed8cb0ae9b Mon Sep 17 00:00:00 2001 From: emil28092005 <65846814+emil28092005@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:56:03 +0300 Subject: [PATCH] more structure (add new tools) --- tools/gauss_jordan.cpp | 1 + tools/gauss_jordan.h | 12 ++++++++++++ tools/math.cpp | 1 + tools/math.h | 12 ++++++++++++ 4 files changed, 26 insertions(+) create mode 100644 tools/gauss_jordan.cpp create mode 100644 tools/gauss_jordan.h create mode 100644 tools/math.cpp create mode 100644 tools/math.h diff --git a/tools/gauss_jordan.cpp b/tools/gauss_jordan.cpp new file mode 100644 index 0000000..de26809 --- /dev/null +++ b/tools/gauss_jordan.cpp @@ -0,0 +1 @@ +#include "gauss_jordan.h" diff --git a/tools/gauss_jordan.h b/tools/gauss_jordan.h new file mode 100644 index 0000000..0666382 --- /dev/null +++ b/tools/gauss_jordan.h @@ -0,0 +1,12 @@ +#ifndef GAUSS_JORDAN_H +#define GAUSS_JORDAN_H + + + +class gauss_jordan { + +}; + + + +#endif //GAUSS_JORDAN_H diff --git a/tools/math.cpp b/tools/math.cpp new file mode 100644 index 0000000..0dc3779 --- /dev/null +++ b/tools/math.cpp @@ -0,0 +1 @@ +#include "math.h" diff --git a/tools/math.h b/tools/math.h new file mode 100644 index 0000000..6704f0c --- /dev/null +++ b/tools/math.h @@ -0,0 +1,12 @@ +#ifndef MATH_H +#define MATH_H + + + +class math { + +}; + + + +#endif //MATH_H