From e02cb7f0de94aa87665a864155847ae5b50a6683 Mon Sep 17 00:00:00 2001 From: Thorsten Kattanek Date: Wed, 18 Aug 2021 22:43:24 +0200 Subject: [PATCH] [#211] Floppy1581 Klasse hinzugefuegt --- src/floppy1581_class.cpp | 21 +++++++++++++++++++++ src/floppy1581_class.h | 26 ++++++++++++++++++++++++++ src/src.pro | 6 ++++++ 3 files changed, 53 insertions(+) create mode 100644 src/floppy1581_class.cpp create mode 100644 src/floppy1581_class.h diff --git a/src/floppy1581_class.cpp b/src/floppy1581_class.cpp new file mode 100644 index 0000000..fab8340 --- /dev/null +++ b/src/floppy1581_class.cpp @@ -0,0 +1,21 @@ +////////////////////////////////////////////////// +// // +// Emu64 // +// von Thorsten Kattanek // +// // +// #file: floppy1581_class.cpp // +// // +// Dieser Sourcecode ist Copyright geschützt! // +// Geistiges Eigentum von Th.Kattanek // +// // +// Letzte Änderung am 18.08.2021 // +// www.emu64.de // +// // +////////////////////////////////////////////////// + +#include "floppy1581_class.h" + +Floppy1581::Floppy1581() +{ + +} diff --git a/src/floppy1581_class.h b/src/floppy1581_class.h new file mode 100644 index 0000000..6d03692 --- /dev/null +++ b/src/floppy1581_class.h @@ -0,0 +1,26 @@ +////////////////////////////////////////////////// +// // +// Emu64 // +// von Thorsten Kattanek // +// // +// #file: floppy1581_class.h // +// // +// Dieser Sourcecode ist Copyright geschützt! // +// Geistiges Eigentum von Th.Kattanek // +// // +// Letzte Änderung am 18.08.2021 // +// www.emu64.de // +// // +////////////////////////////////////////////////// + +#ifndef FLOPPY1581_H +#define FLOPPY1581_H + + +class Floppy1581 +{ +public: + Floppy1581(); +}; + +#endif // FLOPPY1581_H diff --git a/src/src.pro b/src/src.pro index 3e0a413..7c08df4 100755 --- a/src/src.pro +++ b/src/src.pro @@ -343,3 +343,9 @@ INSTALLS += target roms floppy_sounds gfx txt languages icons desktop DISTFILES += \ ../crossbuild-win-releases.sh + +HEADERS += \ + floppy1581_class.h + +SOURCES += \ + floppy1581_class.cpp