mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-25 18:30:21 +00:00
Corrects minor documentation errors.
This commit is contained in:
parent
bce0702745
commit
38b2302b59
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user