Skip to content

Commit

Permalink
[#211]
Browse files Browse the repository at this point in the history
Floppy1581 Klasse hinzugefuegt
  • Loading branch information
ThKattanek committed Aug 18, 2021
1 parent e2ddb6d commit e02cb7f
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/floppy1581_class.cpp
Original file line number Diff line number Diff line change
@@ -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()
{

}
26 changes: 26 additions & 0 deletions src/floppy1581_class.h
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e02cb7f

Please sign in to comment.