diff options
author | 2016-12-21 23:12:02 +0300 | |
---|---|---|
committer | 2017-03-16 22:26:49 +0300 | |
commit | 7d4d6382e7cf96532d18eed0a915c140a3400321 (patch) | |
tree | 037e5cb6d73a1f31c8e84af58292257407636ded /src/lib/formats/hp_ipc_dsk.h | |
parent | 356ccfb017a34f8f3c33d8ff1e772e5182c673f8 (diff) |
hp_ipc: de-skeletonize.
Diffstat (limited to 'src/lib/formats/hp_ipc_dsk.h')
-rw-r--r-- | src/lib/formats/hp_ipc_dsk.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/lib/formats/hp_ipc_dsk.h b/src/lib/formats/hp_ipc_dsk.h new file mode 100644 index 00000000000..11969da02e2 --- /dev/null +++ b/src/lib/formats/hp_ipc_dsk.h @@ -0,0 +1,30 @@ +// license:BSD-3-Clause +// copyright-holders:Sergey Svishchev +/********************************************************************* + + formats/hp_ipc_dsk.h + + hp_ipc format + +*********************************************************************/ + +#ifndef HP_IPC_DSK_H_ +#define HP_IPC_DSK_H_ + +#include "wd177x_dsk.h" + +class hp_ipc_format : public wd177x_format { +public: + hp_ipc_format(); + + virtual const char *name() const override; + virtual const char *description() const override; + virtual const char *extensions() const override; + +private: + static const format formats[]; +}; + +extern const floppy_format_type FLOPPY_HP_IPC_FORMAT; + +#endif |