1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 21:29:53 +00:00

Corrects minor documentation errors.

This commit is contained in:
Thomas Harte 2018-04-23 19:59:19 -07:00
parent bce0702745
commit 38b2302b59

View File

@ -18,21 +18,20 @@ namespace Storage {
namespace Disk { namespace Disk {
/*! /*!
Provides a @c Disk containing an HFE disk image a bit stream representation of a floppy. Provides a @c DiskImage containing an HFE a bit stream representation of a floppy.
*/ */
class HFE: public DiskImage { class HFE: public DiskImage {
public: public:
/*! /*!
Construct an @c SSD containing content from the file with name @c file_name. Construct an @c HFE containing content from the file with name @c file_name.
@throws ErrorCantOpen if this file can't be opened. @throws ErrorNotHFE if the file doesn't appear to contain a .SSD format image.
@throws ErrorNotSSD if the file doesn't appear to contain a .SSD format image.
*/ */
HFE(const std::string &file_name); HFE(const std::string &file_name);
~HFE(); ~HFE();
enum { enum {
ErrorNotHFE, ErrorNotHFE
}; };
// implemented to satisfy @c Disk // implemented to satisfy @c Disk